Skip to content

Commit 29a2bcc

Browse files
author
Maksim Kostromin
committed
Release 2.7.14 version.
1 parent b5c4997 commit 29a2bcc

File tree

10 files changed

+18
-14
lines changed

10 files changed

+18
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ automatically within application runner bean
1212
<dependency>
1313
<groupId>io.github.daggerok</groupId>
1414
<artifactId>liquibase-r2dbc-spring-boot-starter</artifactId>
15-
<version>2.1.11</version>
15+
<version>2.7.14</version>
1616
</dependency>
1717
```
1818

1919
or
2020

2121
```kotlin
22-
dependency("io.github.daggerok:liquibase-r2dbc-spring-boot-starter:2.1.11")
22+
dependency("io.github.daggerok:liquibase-r2dbc-spring-boot-starter:2.7.14")
2323
```
2424

2525
And then use regular Spring Boot + Liquibase setup:
@@ -43,8 +43,8 @@ And then use regular Spring Boot + Liquibase setup:
4343
```xml
4444
<dependencies>
4545
<dependency>
46-
<groupId>mysql</groupId>
47-
<artifactId>mysql-connector-java</artifactId>
46+
<groupId>com.mysql</groupId>
47+
<artifactId>mysql-connector-j</artifactId>
4848
<scope>runtime</scope>
4949
</dependency>
5050
<dependency>

docs/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "liquibase-r2dbc-spring-boot-starter",
3-
"version": "2.1.11",
3+
"version": "2.7.14",
44
"description": "Liquibase R2DBC spring-boot starter",
55
"main": "index.js",
66
"authors": {

examples/h2/file/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>liquibase-r2dbc-spring-boot-starter-parent</artifactId>
77
<groupId>io.github.daggerok</groupId>
8-
<version>2.7.14-SNAPSHOT</version>
8+
<version>2.7.14</version>
99
<relativePath>../../../pom.xml</relativePath>
1010
</parent>
1111
<packaging>jar</packaging>

examples/h2/mem/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>liquibase-r2dbc-spring-boot-starter-parent</artifactId>
77
<groupId>io.github.daggerok</groupId>
8-
<version>2.7.14-SNAPSHOT</version>
8+
<version>2.7.14</version>
99
<relativePath>../../../pom.xml</relativePath>
1010
</parent>
1111
<packaging>jar</packaging>

examples/mariadb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>liquibase-r2dbc-spring-boot-starter-parent</artifactId>
77
<groupId>io.github.daggerok</groupId>
8-
<version>2.7.14-SNAPSHOT</version>
8+
<version>2.7.14</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<packaging>jar</packaging>

examples/mysql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>liquibase-r2dbc-spring-boot-starter-parent</artifactId>
77
<groupId>io.github.daggerok</groupId>
8-
<version>2.7.14-SNAPSHOT</version>
8+
<version>2.7.14</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<packaging>jar</packaging>

examples/postgresql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>liquibase-r2dbc-spring-boot-starter-parent</artifactId>
77
<groupId>io.github.daggerok</groupId>
8-
<version>2.7.14-SNAPSHOT</version>
8+
<version>2.7.14</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<packaging>jar</packaging>

liquibase-r2dbc-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>liquibase-r2dbc-spring-boot-starter-parent</artifactId>
77
<groupId>io.github.daggerok</groupId>
8-
<version>2.7.14-SNAPSHOT</version>
8+
<version>2.7.14</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<packaging>jar</packaging>

pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<modelVersion>4.0.0</modelVersion>
2121
<groupId>io.github.daggerok</groupId>
2222
<artifactId>liquibase-r2dbc-spring-boot-starter-parent</artifactId>
23-
<version>2.7.14-SNAPSHOT</version>
23+
<version>2.7.14</version>
2424
<name>${project.artifactId}</name>
2525
<description>The liquibase-r2dbc-spring-boot-starter maven parent project</description>
2626
<url>https://github.com/daggerok/liquibase-r2dbc-spring-boot-starter</url>
@@ -523,6 +523,10 @@
523523
524524
Workflow:
525525
526+
- If you want to sync project version with spring boot (for example you want to set
527+
project version same as spring-boot 2.7.14) before release use according script:
528+
bash .bin/update-version.sh 2.7.14-SNAPSHOT
529+
526530
- Let's say your version is x.y.z-SNAPSHOT
527531
./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout
528532

0 commit comments

Comments
 (0)