Skip to content

Commit b4755d6

Browse files
committed
HBX-3076: Update version identifiers in Jenkinsfile to 6.6.25.Final and 6.6.26-SNAPSHOT respectively
Signed-off-by: Koen Aers <[email protected]>
1 parent eb4be82 commit b4755d6

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

ci/release/Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ pipeline {
3636
parameters {
3737
string(
3838
name: 'RELEASE_VERSION',
39-
defaultValue: '6.6.24.Final',
40-
description: 'The version to be released, e.g. 6.6.24.Final.',
39+
defaultValue: '6.6.25.Final',
40+
description: 'The version to be released, e.g. 6.6.25.Final.',
4141
trim: true
4242
)
4343
string(
4444
name: 'DEVELOPMENT_VERSION',
45-
defaultValue: '6.6.25-SNAPSHOT',
46-
description: 'The next version to be used after the release, e.g. 6.6.25-SNAPSHOT.',
45+
defaultValue: '6.6.26-SNAPSHOT',
46+
description: 'The next version to be used after the release, e.g. 6.6.26-SNAPSHOT.',
4747
trim: true
4848
)
4949
booleanParam(

gradle/docs/5-minute-tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ tutorial. Now we can tackle the `build.gradle` file.
8484
## Modify the generated `app\build.gradle` file
8585

8686
We have to specify the use of the Gradle plugin in the `plugin` section of the `build.gradle` file.
87-
So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.24.Final'` to that section.
87+
So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.25.Final'` to that section.
8888

8989
```groovy
9090
...
9191
plugins {
9292
...
93-
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.24.Final'
93+
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.25.Final'
9494
}
9595
...
9696
```
@@ -114,7 +114,7 @@ with the contents as shown below.
114114
```groovy
115115
plugins {
116116
id 'application'
117-
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.24.Final'
117+
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.25.Final'
118118
}
119119
120120
repositories {

gradle/docs/examples/5-minute-tutorial/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
plugins {
99
// Apply the application plugin to add support for building a CLI application in Java.
1010
id 'application'
11-
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.24.Final'
11+
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.25.Final'
1212
}
1313

1414
repositories {

0 commit comments

Comments
 (0)