Skip to content

HBX-3086: Update version identifiers in Jenkinsfile (and documentation) to 7.1.0.CR2 #5362

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ant/docs/5-minute-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ for the purpose of this short tutorial.
```xml
<project xmlns:ivy="antlib:org.apache.ivy.ant">

<property name="hibernate.tools.version" value="the-hibernate-tools-version-to-use, e.g. 7.1.0.CR1"/>
<property name="hibernate.tools.version" value="the-hibernate-tools-version-to-use, e.g. 7.1.0.CR2"/>
<property name="h2.version" value="the-h2-version-to-use, e.g. 2.3.232"/>

<ivy:cachepath organisation="org.hibernate.tool" module="hibernate-tools-ant" revision="${hibernate.tools.version}"
Expand Down
2 changes: 1 addition & 1 deletion ant/docs/examples/common/included.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-->
<project name="common" xmlns:ivy="antlib:org.apache.ivy.ant">

<property name="hibernate-tools.version" value="7.1.0.CR1"/>
<property name="hibernate-tools.version" value="7.1.0.CR2"/>
<property name="javaee-api.version" value="8.0.1"/>
<property name="jdbc-driver.org" value="com.h2database"/>
<property name="jdbc-driver.module" value="h2"/>
Expand Down
2 changes: 1 addition & 1 deletion ant/docs/reference-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ file. In addition, you will need to define properties (or replace the variables)
the jdbc driver and for the version information. See an example in the snippet below:

```xml
<property name="hibernate-tools.version" value="7.1.0.CR1"/>
<property name="hibernate-tools.version" value="7.1.0.CR2"/>
<property name="jdbc-driver.org" value="com.h2database"/>
<property name="jdbc-driver.module" value="h2"/>
<property name="jdbc-driver.version" value="2.3.232"/>
Expand Down
4 changes: 2 additions & 2 deletions ci/release/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ pipeline {
parameters {
string(
name: 'RELEASE_VERSION',
defaultValue: '7.1.0.CR1',
description: 'The version to be released, e.g. 7.1.0.CR1.',
defaultValue: '7.1.0.CR2',
description: 'The version to be released, e.g. 7.1.0.CR2.',
trim: true
)
string(
Expand Down
6 changes: 3 additions & 3 deletions gradle/docs/5-minute-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ tutorial. Now we can tackle the `build.gradle` file.
## Modify the generated `app\build.gradle` file

We have to specify the use of the Gradle plugin in the `plugin` section of the `build.gradle` file.
So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.CR1'` to that section.
So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.CR2'` to that section.

```groovy
...
plugins {
...
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.CR1'
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.CR2'
}
...
```
Expand All @@ -114,7 +114,7 @@ with the contents as shown below.
```groovy
plugins {
id('application')
id('org.hibernate.tool.hibernate-tools-gradle') version '7.1.0.CR1'
id('org.hibernate.tool.hibernate-tools-gradle') version '7.1.0.CR2'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion gradle/docs/examples/5-minute-tutorial/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
plugins {
// Apply the application plugin to add support for building a CLI application in Java.
id 'application'
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.CR1'
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.CR2'
}

repositories {
Expand Down