Skip to content

Commit

Permalink
cleanup after release (#225)
Browse files Browse the repository at this point in the history
* set version 0.15.4 in readme
* revert intrusive changes for publications to maven central
* set version 0.16.0 in project
  • Loading branch information
olme04 committed Apr 14, 2022
1 parent 947d5ee commit e3efddb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand Down Expand Up @@ -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")
}
```

Expand Down
3 changes: 3 additions & 0 deletions buildSrc/src/main/kotlin/rsocket.publication.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ publishing {
}

signing {
isRequired = sonatypeUsername != null && sonatypePassword != null &&
signingKey != null && signingPassword != null

useInMemoryPgpKeys(signingKey, signingPassword)
sign(publications)
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e3efddb

Please sign in to comment.