From e3efddb4c2fe480f1aa0d4822a351e999430fc69 Mon Sep 17 00:00:00 2001 From: olme04 <86063649+olme04@users.noreply.github.com> Date: Thu, 14 Apr 2022 14:46:05 +0300 Subject: [PATCH] cleanup after release (#225) * set version 0.15.4 in readme * revert intrusive changes for publications to maven central * set version 0.16.0 in project --- .github/workflows/ci-release.yml | 6 +++--- README.md | 14 +++++++------- .../src/main/kotlin/rsocket.publication.gradle.kts | 3 +++ gradle.properties | 2 +- 4 files changed, 14 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index b9649b8f..e4bc0347 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -5,10 +5,10 @@ on: - '*' jobs: -# test: -# uses: ./.github/workflows/run-tests.yml + test: + uses: ./.github/workflows/run-tests.yml publish: -# needs: [ test ] + needs: [ test ] runs-on: macos-11 steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 7fd1865a..e85d1753 100644 --- a/README.md +++ b/README.md @@ -59,10 +59,10 @@ Dependencies: ```kotlin dependencies { //for client - implementation("io.rsocket.kotlin:rsocket-ktor-client:0.15.0") + implementation("io.rsocket.kotlin:rsocket-ktor-client:0.15.4") //for server - implementation("io.rsocket.kotlin:rsocket-ktor-server:0.15.0") + implementation("io.rsocket.kotlin:rsocket-ktor-server:0.15.4") } ``` @@ -183,19 +183,19 @@ Dependencies: ```kotlin dependencies { - implementation("io.rsocket.kotlin:rsocket-core:0.15.0") + implementation("io.rsocket.kotlin:rsocket-core:0.15.4") // TCP ktor client/server transport - implementation("io.rsocket.kotlin:rsocket-transport-ktor-tcp:0.15.0") + implementation("io.rsocket.kotlin:rsocket-transport-ktor-tcp:0.15.4") // WS ktor client transport - implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-client:0.15.0") + implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-client:0.15.4") // WS ktor server transport - implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-server:0.15.0") + implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-server:0.15.4") // TCP nodeJS client/server transport - implementation("io.rsocket.kotlin:rsocket-transport-nodejs-tcp:0.15.0") + implementation("io.rsocket.kotlin:rsocket-transport-nodejs-tcp:0.15.4") } ``` diff --git a/buildSrc/src/main/kotlin/rsocket.publication.gradle.kts b/buildSrc/src/main/kotlin/rsocket.publication.gradle.kts index 8485bb24..3c3e67bc 100644 --- a/buildSrc/src/main/kotlin/rsocket.publication.gradle.kts +++ b/buildSrc/src/main/kotlin/rsocket.publication.gradle.kts @@ -97,6 +97,9 @@ publishing { } signing { + isRequired = sonatypeUsername != null && sonatypePassword != null && + signingKey != null && signingPassword != null + useInMemoryPgpKeys(signingKey, signingPassword) sign(publications) } diff --git a/gradle.properties b/gradle.properties index d332c6f7..c4aaed4d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,7 +15,7 @@ # #Project group=io.rsocket.kotlin -version=0.15.0-SNAPSHOT +version=0.16.0-SNAPSHOT #Kotlin kotlin.js.compiler=both kotlin.mpp.stability.nowarn=true