Skip to content

Commit 6afa0bf

Browse files
Bump version to flyway-9.1.5
Please see the GH release for the release notes Add smoke test to github actions
1 parent 35442a0 commit 6afa0bf

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ jobs:
5050
- name: Build with Maven
5151
run: mvn -B install -e --file pom.xml "-Dgithub.os=${{ matrix.os }}"
5252

53-
- name: Build with Maven
54-
run: mvn -B install -e --file pom.xml "-Dgithub.os=${{ matrix.os }}"
53+
- name: Smoke Test with Maven
54+
run: mvn -B exec:java -e --file pom.xml -pl flyway-commandline "-Dexec.mainClass=org.flywaydb.commandline.Main" "-Dexec.args=-url='jdbc:h2:mem:db' info"

flyway-commandline/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.flywaydb</groupId>
2323
<artifactId>flyway-parent</artifactId>
24-
<version>9.1.4</version>
24+
<version>9.1.5</version>
2525
</parent>
2626
<artifactId>flyway-commandline</artifactId>
2727
<packaging>jar</packaging>
@@ -30,8 +30,8 @@
3030

3131

3232

33-
<flyway-gcp-bigquery.version>9.1.4-beta</flyway-gcp-bigquery.version>
34-
<flyway-gcp-spanner.version>9.1.4-beta</flyway-gcp-spanner.version>
33+
<flyway-gcp-bigquery.version>9.1.5-beta</flyway-gcp-bigquery.version>
34+
<flyway-gcp-spanner.version>9.1.5-beta</flyway-gcp-spanner.version>
3535
<flyway-sqlserver.version>${project.version}</flyway-sqlserver.version>
3636
<flyway-mysql.version>${project.version}</flyway-mysql.version>
3737
<flyway-firebird.version>${project.version}</flyway-firebird.version>

flyway-community-db-support/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.flywaydb</groupId>
2323
<artifactId>flyway-parent</artifactId>
24-
<version>9.1.4</version>
24+
<version>9.1.5</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

flyway-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.flywaydb</groupId>
2323
<artifactId>flyway-parent</artifactId>
24-
<version>9.1.4</version>
24+
<version>9.1.5</version>
2525
</parent>
2626
<artifactId>flyway-core</artifactId>
2727
<packaging>jar</packaging>

flyway-firebird/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>flyway-parent</artifactId>
2424
<groupId>org.flywaydb</groupId>
25-
<version>9.1.4</version>
25+
<version>9.1.5</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

flyway-gcp-bigquery/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
<parent>
2222
<groupId>org.flywaydb</groupId>
2323
<artifactId>flyway-parent</artifactId>
24-
<version>9.1.4</version>
24+
<version>9.1.5</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

2828
<artifactId>flyway-gcp-bigquery</artifactId>
2929
<packaging>jar</packaging>
3030
<name>${project.artifactId}</name>
31-
<version>9.1.4-beta</version>
31+
<version>9.1.5-beta</version>
3232

3333
<dependencies>
3434
<dependency>

flyway-gcp-spanner/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
<parent>
2222
<groupId>org.flywaydb</groupId>
2323
<artifactId>flyway-parent</artifactId>
24-
<version>9.1.4</version>
24+
<version>9.1.5</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

2828
<artifactId>flyway-gcp-spanner</artifactId>
2929
<packaging>jar</packaging>
3030
<name>${project.artifactId}</name>
31-
<version>9.1.4-beta</version>
31+
<version>9.1.5-beta</version>
3232

3333
<dependencies>
3434
<dependency>

flyway-gradle-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.flywaydb</groupId>
2323
<artifactId>flyway-parent</artifactId>
24-
<version>9.1.4</version>
24+
<version>9.1.5</version>
2525
</parent>
2626
<artifactId>flyway-gradle-plugin</artifactId>
2727
<packaging>jar</packaging>

flyway-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.flywaydb</groupId>
2222
<artifactId>flyway-parent</artifactId>
23-
<version>9.1.4</version>
23+
<version>9.1.5</version>
2424
</parent>
2525
<artifactId>flyway-maven-plugin</artifactId>
2626
<packaging>maven-plugin</packaging>

flyway-mysql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>flyway-parent</artifactId>
2424
<groupId>org.flywaydb</groupId>
25-
<version>9.1.4</version>
25+
<version>9.1.5</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

0 commit comments

Comments
 (0)