Skip to content

Commit 11e991c

Browse files
committed
HBX-3077: Update version identifiers in Jenkinsfile to 7.0.10.Final and 7.0.11-SNAPSHOT respectively
- Also update remaining references to 7.0.9.Final to 7.0.10.Final Signed-off-by: Koen Aers <[email protected]>
1 parent 8226273 commit 11e991c

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

ant/docs/5-minute-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ for the purpose of this short tutorial.
4545
```xml
4646
<project xmlns:ivy="antlib:org.apache.ivy.ant">
4747

48-
<property name="hibernate.tools.version" value="the-hibernate-tools-version-to-use, e.g. 7.0.9.Final"/>
48+
<property name="hibernate.tools.version" value="the-hibernate-tools-version-to-use, e.g. 7.0.10.Final"/>
4949
<property name="h2.version" value="the-h2-version-to-use, e.g. 2.3.232"/>
5050

5151
<ivy:cachepath organisation="org.hibernate.tool" module="hibernate-tools-ant" revision="${hibernate.tools.version}"

ant/docs/examples/common/included.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
-->
1616
<project name="common" xmlns:ivy="antlib:org.apache.ivy.ant">
1717

18-
<property name="hibernate-tools.version" value="7.0.9.Final"/>
18+
<property name="hibernate-tools.version" value="7.0.10.Final"/>
1919
<property name="javaee-api.version" value="8.0.1"/>
2020
<property name="jdbc-driver.org" value="com.h2database"/>
2121
<property name="jdbc-driver.module" value="h2"/>

ant/docs/reference-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ file. In addition, you will need to define properties (or replace the variables)
4949
the jdbc driver and for the version information. See an example in the snippet below:
5050

5151
```xml
52-
<property name="hibernate-tools.version" value="7.0.9.Final"/>
52+
<property name="hibernate-tools.version" value="7.0.10.Final"/>
5353
<property name="jdbc-driver.org" value="com.h2database"/>
5454
<property name="jdbc-driver.module" value="h2"/>
5555
<property name="jdbc-driver.version" value="2.3.232"/>

ci/release/Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ pipeline {
3232
parameters {
3333
string(
3434
name: 'RELEASE_VERSION',
35-
defaultValue: '7.0.9.Final',
36-
description: 'The version to be released, e.g. 7.0.9.Final.',
35+
defaultValue: '7.0.10.Final',
36+
description: 'The version to be released, e.g. 7.0.10.Final.',
3737
trim: true
3838
)
3939
string(
4040
name: 'DEVELOPMENT_VERSION',
41-
defaultValue: '7.0.10-SNAPSHOT',
42-
description: 'The next version to be used after the release, e.g. 7.0.10-SNAPSHOT.',
41+
defaultValue: '7.0.11-SNAPSHOT',
42+
description: 'The next version to be used after the release, e.g. 7.0.11-SNAPSHOT.',
4343
trim: true
4444
)
4545
booleanParam(

gradle/docs/5-minute-tutorial.md

Lines changed: 4 additions & 4 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 '7.0.9.Final'` to that section.
87+
So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.10.Final'` to that section.
8888

8989
```groovy
9090
...
9191
plugins {
9292
...
93-
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.9.Final'
93+
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.10.Final'
9494
}
9595
...
9696
```
@@ -113,8 +113,8 @@ with the contents as shown below.
113113

114114
```groovy
115115
plugins {
116-
id('application')
117-
id('org.hibernate.tool.hibernate-tools-gradle') version '7.0.9.Final'
116+
id 'application'
117+
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.10.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 '7.0.9.Final'
11+
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.10.Final'
1212
}
1313

1414
repositories {

0 commit comments

Comments
 (0)