From f5f8327b939dc4e12c698be835cea4104dbd2fb1 Mon Sep 17 00:00:00 2001 From: Koen Aers Date: Fri, 3 Oct 2025 12:58:25 +0200 Subject: [PATCH] HBX-3141: Update version identifiers in Jenkinsfile to 6.6.32.Final and 6.6.33-SNAPSHOT respectively Signed-off-by: Koen Aers --- ci/release/Jenkinsfile | 8 ++++---- gradle/docs/5-minute-tutorial.md | 6 +++--- gradle/docs/examples/5-minute-tutorial/app/build.gradle | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ci/release/Jenkinsfile b/ci/release/Jenkinsfile index f381c6e4b..fd7b03d38 100644 --- a/ci/release/Jenkinsfile +++ b/ci/release/Jenkinsfile @@ -36,14 +36,14 @@ pipeline { parameters { string( name: 'RELEASE_VERSION', - defaultValue: '6.6.31.Final', - description: 'The version to be released, e.g. 6.6.31.Final.', + defaultValue: '6.6.32.Final', + description: 'The version to be released, e.g. 6.6.32.Final.', trim: true ) string( name: 'DEVELOPMENT_VERSION', - defaultValue: '6.6.32-SNAPSHOT', - description: 'The next version to be used after the release, e.g. 6.6.32-SNAPSHOT.', + defaultValue: '6.6.33-SNAPSHOT', + description: 'The next version to be used after the release, e.g. 6.6.33-SNAPSHOT.', trim: true ) booleanParam( diff --git a/gradle/docs/5-minute-tutorial.md b/gradle/docs/5-minute-tutorial.md index f39aeeb17..fbb92578a 100644 --- a/gradle/docs/5-minute-tutorial.md +++ b/gradle/docs/5-minute-tutorial.md @@ -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 '6.6.31.Final'` to that section. +So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.32.Final'` to that section. ```groovy ... plugins { ... - id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.31.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.32.Final' } ... ``` @@ -114,7 +114,7 @@ with the contents as shown below. ```groovy plugins { id 'application' - id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.31.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.32.Final' } repositories { diff --git a/gradle/docs/examples/5-minute-tutorial/app/build.gradle b/gradle/docs/examples/5-minute-tutorial/app/build.gradle index dfcb661ca..41103fcb0 100644 --- a/gradle/docs/examples/5-minute-tutorial/app/build.gradle +++ b/gradle/docs/examples/5-minute-tutorial/app/build.gradle @@ -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 '6.6.31.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.32.Final' } repositories {