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