Skip to content

Commit e3efddb

Browse files
author
olme04
authored
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
1 parent 947d5ee commit e3efddb

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.github/workflows/ci-release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on:
55
- '*'
66

77
jobs:
8-
# test:
9-
# uses: ./.github/workflows/run-tests.yml
8+
test:
9+
uses: ./.github/workflows/run-tests.yml
1010
publish:
11-
# needs: [ test ]
11+
needs: [ test ]
1212
runs-on: macos-11
1313
steps:
1414
- uses: actions/checkout@v2

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ Dependencies:
5959
```kotlin
6060
dependencies {
6161
//for client
62-
implementation("io.rsocket.kotlin:rsocket-ktor-client:0.15.0")
62+
implementation("io.rsocket.kotlin:rsocket-ktor-client:0.15.4")
6363

6464
//for server
65-
implementation("io.rsocket.kotlin:rsocket-ktor-server:0.15.0")
65+
implementation("io.rsocket.kotlin:rsocket-ktor-server:0.15.4")
6666
}
6767
```
6868

@@ -183,19 +183,19 @@ Dependencies:
183183

184184
```kotlin
185185
dependencies {
186-
implementation("io.rsocket.kotlin:rsocket-core:0.15.0")
186+
implementation("io.rsocket.kotlin:rsocket-core:0.15.4")
187187

188188
// TCP ktor client/server transport
189-
implementation("io.rsocket.kotlin:rsocket-transport-ktor-tcp:0.15.0")
189+
implementation("io.rsocket.kotlin:rsocket-transport-ktor-tcp:0.15.4")
190190

191191
// WS ktor client transport
192-
implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-client:0.15.0")
192+
implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-client:0.15.4")
193193

194194
// WS ktor server transport
195-
implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-server:0.15.0")
195+
implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-server:0.15.4")
196196

197197
// TCP nodeJS client/server transport
198-
implementation("io.rsocket.kotlin:rsocket-transport-nodejs-tcp:0.15.0")
198+
implementation("io.rsocket.kotlin:rsocket-transport-nodejs-tcp:0.15.4")
199199
}
200200
```
201201

buildSrc/src/main/kotlin/rsocket.publication.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ publishing {
9797
}
9898

9999
signing {
100+
isRequired = sonatypeUsername != null && sonatypePassword != null &&
101+
signingKey != null && signingPassword != null
102+
100103
useInMemoryPgpKeys(signingKey, signingPassword)
101104
sign(publications)
102105
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616
#Project
1717
group=io.rsocket.kotlin
18-
version=0.15.0-SNAPSHOT
18+
version=0.16.0-SNAPSHOT
1919
#Kotlin
2020
kotlin.js.compiler=both
2121
kotlin.mpp.stability.nowarn=true

0 commit comments

Comments
 (0)