Skip to content

(chore) Vert.x 3.9.2 && AWS SDK 2.13.6 #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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
# 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
name: CI-Release
on:
push:
@@ -19,7 +19,7 @@ jobs:
- name: Release to Bintray
uses: eskatos/gradle-command-action@v1
with:
gradle-version: 6.3
gradle-version: 6.5
arguments: test bintrayUpload
env:
BINTRAY_USER: ${{secrets.BINTRAY_USER}}
2 changes: 1 addition & 1 deletion .github/workflows/ci-snapshot.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ jobs:
java-version: 11
- uses: eskatos/gradle-command-action@v1
with:
gradle-version: 6.3
gradle-version: 6.5
arguments: assemble publish -PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}}
- name: Create Snapshot Release in Github
uses: actions/create-release@latest
2 changes: 1 addition & 1 deletion .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -18,5 +18,5 @@ jobs:
run: "docker pull localstack/localstack:0.10.2"
- uses: eskatos/gradle-command-action@v1
with:
gradle-version: 6.3
gradle-version: 6.5
arguments: test -Dtests.integration=localstack
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ Artifacts are published [here](https://search.maven.org/search?q=a:vertx-aws-sdk

| Project | Vert.x | AWS sdk |
| ------- | ------ | ------- |
| 0.5.1 | 3.9.2 | 2.13.6 |
| 0.5.0 | 3.9.0 | 2.12.0 |
| 0.4.0 | 3.8.3 | 2.10.16 |
| 0.3.0 | 3.8.1 | 2.7.8 |
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
val vertxVersion = "3.9.0"
val awsSdkVersion = "2.12.0"
val vertxVersion = "3.9.2"
val awsSdkVersion = "2.13.6"
val junit5Version = "5.4.0"
val logbackVersion = "1.2.3"
val integrationOption = "tests.integration"

group = "io.reactiverse"
version = "0.5.0"
version = "0.5.1"

plugins {
`java-library`
@@ -127,7 +127,7 @@ tasks {
}

withType<Wrapper> {
gradleVersion = "6.3"
gradleVersion = "6.5"
}
}