File tree 4 files changed +14
-11
lines changed
4 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 5
5
- ' *'
6
6
7
7
jobs :
8
- # test:
9
- # uses: ./.github/workflows/run-tests.yml
8
+ test :
9
+ uses : ./.github/workflows/run-tests.yml
10
10
publish :
11
- # needs: [ test ]
11
+ needs : [ test ]
12
12
runs-on : macos-11
13
13
steps :
14
14
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -59,10 +59,10 @@ Dependencies:
59
59
``` kotlin
60
60
dependencies {
61
61
// for client
62
- implementation(" io.rsocket.kotlin:rsocket-ktor-client:0.15.0 " )
62
+ implementation(" io.rsocket.kotlin:rsocket-ktor-client:0.15.4 " )
63
63
64
64
// for server
65
- implementation(" io.rsocket.kotlin:rsocket-ktor-server:0.15.0 " )
65
+ implementation(" io.rsocket.kotlin:rsocket-ktor-server:0.15.4 " )
66
66
}
67
67
```
68
68
@@ -183,19 +183,19 @@ Dependencies:
183
183
184
184
``` kotlin
185
185
dependencies {
186
- implementation(" io.rsocket.kotlin:rsocket-core:0.15.0 " )
186
+ implementation(" io.rsocket.kotlin:rsocket-core:0.15.4 " )
187
187
188
188
// 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 " )
190
190
191
191
// 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 " )
193
193
194
194
// 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 " )
196
196
197
197
// 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 " )
199
199
}
200
200
```
201
201
Original file line number Diff line number Diff line change @@ -97,6 +97,9 @@ publishing {
97
97
}
98
98
99
99
signing {
100
+ isRequired = sonatypeUsername != null && sonatypePassword != null &&
101
+ signingKey != null && signingPassword != null
102
+
100
103
useInMemoryPgpKeys(signingKey, signingPassword)
101
104
sign(publications)
102
105
}
Original file line number Diff line number Diff line change 15
15
#
16
16
# Project
17
17
group =io.rsocket.kotlin
18
- version =0.15 .0-SNAPSHOT
18
+ version =0.16 .0-SNAPSHOT
19
19
# Kotlin
20
20
kotlin.js.compiler =both
21
21
kotlin.mpp.stability.nowarn =true
You can’t perform that action at this time.
0 commit comments