Skip to content

HBX-3087: Update version identifiers in Jenkinsfile to 7.1.0.Final and 7.1.1-SNAPSHOT respectively #5364

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.CR2"/>
<property name="hibernate.tools.version" value="the-hibernate-tools-version-to-use, e.g. 7.1.0.Final"/>
<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.CR2"/>
<property name="hibernate-tools.version" value="7.1.0.Final"/>
<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.CR2"/>
<property name="hibernate-tools.version" value="7.1.0.Final"/>
<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
8 changes: 4 additions & 4 deletions ci/release/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ pipeline {
parameters {
string(
name: 'RELEASE_VERSION',
defaultValue: '7.1.0.CR2',
description: 'The version to be released, e.g. 7.1.0.CR2.',
defaultValue: '7.1.0.Final',
description: 'The version to be released, e.g. 7.1.0.Final.',
trim: true
)
string(
name: 'DEVELOPMENT_VERSION',
defaultValue: '7.1.0-SNAPSHOT',
description: 'The next version to be used after the release, e.g. 7.1.0-SNAPSHOT.',
defaultValue: '7.1.1-SNAPSHOT',
description: 'The next version to be used after the release, e.g. 7.1.1-SNAPSHOT.',
trim: true
)
booleanParam(
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.CR2'` to that section.
So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.Final'` to that section.

```groovy
...
plugins {
...
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.CR2'
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.Final'
}
...
```
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.CR2'
id('org.hibernate.tool.hibernate-tools-gradle') version '7.1.0.Final'
}

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.CR2'
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.Final'
}

repositories {
Expand Down