Skip to content

Commit e1c7def

Browse files
committed
Upgrade to:
* Vert.x 3.9.2 * AWS SDK 2.13.6 * Gradle 6.5
1 parent d9a9221 commit e1c7def

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.github/workflows/ci-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# When a tag matching a semver number (like `1.1.0`) is pushed, then tyr to publish the version to bintray and create the matching release in Github
1+
# When a tag matching a semver number (like `1.1.0`) is pushed, then try to publish the version to bintray and create the matching release in Github
22
name: CI-Release
33
on:
44
push:
@@ -19,7 +19,7 @@ jobs:
1919
- name: Release to Bintray
2020
uses: eskatos/gradle-command-action@v1
2121
with:
22-
gradle-version: 6.3
22+
gradle-version: 6.5
2323
arguments: test bintrayUpload
2424
env:
2525
BINTRAY_USER: ${{secrets.BINTRAY_USER}}

.github/workflows/ci-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
java-version: 11
1818
- uses: eskatos/gradle-command-action@v1
1919
with:
20-
gradle-version: 6.3
20+
gradle-version: 6.5
2121
arguments: assemble publish -PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}}
2222
- name: Create Snapshot Release in Github
2323
uses: actions/create-release@latest

.github/workflows/ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ jobs:
1818
run: "docker pull localstack/localstack:0.10.2"
1919
- uses: eskatos/gradle-command-action@v1
2020
with:
21-
gradle-version: 6.3
21+
gradle-version: 6.5
2222
arguments: test -Dtests.integration=localstack

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Artifacts are published [here](https://search.maven.org/search?q=a:vertx-aws-sdk
1212

1313
| Project | Vert.x | AWS sdk |
1414
| ------- | ------ | ------- |
15+
| 0.5.1 | 3.9.2 | 2.13.6 |
1516
| 0.5.0 | 3.9.0 | 2.12.0 |
1617
| 0.4.0 | 3.8.3 | 2.10.16 |
1718
| 0.3.0 | 3.8.1 | 2.7.8 |

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
val vertxVersion = "3.9.0"
2-
val awsSdkVersion = "2.12.0"
1+
val vertxVersion = "3.9.2"
2+
val awsSdkVersion = "2.13.6"
33
val junit5Version = "5.4.0"
44
val logbackVersion = "1.2.3"
55
val integrationOption = "tests.integration"
66

77
group = "io.reactiverse"
8-
version = "0.5.0"
8+
version = "0.5.1"
99

1010
plugins {
1111
`java-library`
@@ -127,7 +127,7 @@ tasks {
127127
}
128128

129129
withType<Wrapper> {
130-
gradleVersion = "6.3"
130+
gradleVersion = "6.5"
131131
}
132132
}
133133

0 commit comments

Comments
 (0)