Skip to content

Commit

Permalink
next development iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
mostroverkhov committed Aug 5, 2023
1 parent 5208342 commit f866f3b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Project supports 3 kinds of APIs:
**GRPC compatible**. All implementations are directly compatible with GRPC via MessageStreams-RPC & GRPC transport.
GRPC clients can access such services without separate "gateway" binaries and IDL sharing schemes.

**Non-intrusive**. [MessageStreams](https://github.com/jauntsdn/rsocket-jvm/blob/1.4.0/rsocket-reactor/src/main/java/com/jauntsdn/rsocket/MessageStreams.java) API & [RSocket-JVM](https://github.com/jauntsdn/rsocket-jvm/blob/1.4.0/rsocket-reactor/src/main/java/com/jauntsdn/rsocket/RSocket.java) runtime are clearly split so from end-user perspective there is
**Non-intrusive**. [MessageStreams](https://github.com/jauntsdn/rsocket-jvm/blob/1.5.0/rsocket-reactor/src/main/java/com/jauntsdn/rsocket/MessageStreams.java) API & [RSocket-JVM](https://github.com/jauntsdn/rsocket-jvm/blob/1.5.0/rsocket-reactor/src/main/java/com/jauntsdn/rsocket/RSocket.java) runtime are clearly split so from end-user perspective there is
only set of streaming & non-streaming interactions on buffers/messages:

```groovy
Expand Down Expand Up @@ -116,10 +116,10 @@ repositories {
}
dependencies {
implementation "com.jauntsdn.rsocket:rsocket-messages:1.4.0"
implementation "com.jauntsdn.rsocket:rsocket-rpc-idl:1.4.0"
implementation "com.jauntsdn.rsocket:rsocket-<VENDOR>:1.4.0"
implementation "com.jauntsdn.rsocket:rsocket-rpc-<VENDOR>:1.4.0"
implementation "com.jauntsdn.rsocket:rsocket-messages:1.5.0"
implementation "com.jauntsdn.rsocket:rsocket-rpc-idl:1.5.0"
implementation "com.jauntsdn.rsocket:rsocket-<VENDOR>:1.5.0"
implementation "com.jauntsdn.rsocket:rsocket-rpc-<VENDOR>:1.5.0"
}
```

Expand All @@ -128,7 +128,7 @@ MessageStreams-RPC compiler binaries are linux, windows(x86) only
protobuf {
plugins {
rsocketRpc {
artifact = "com.jauntsdn.rsocket:rsocket-rpc-<VENDOR>-compiler:1.4.0"
artifact = "com.jauntsdn.rsocket:rsocket-rpc-<VENDOR>-compiler:1.5.0"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.jauntsdn.rsocket
version=1.5.0
version=1.5.1

dependencyManagementPluginVersion=1.1.0
protobufPluginVersion=0.9.2
Expand All @@ -22,7 +22,7 @@ jakartaAnnotationVersion=2.1.1
protobufVersion=3.23.4

release=false
virtualthreads=false
toolchains=false
virtualthreads=true
toolchains=true
org.gradle.parallel=true
org.gradle.configureondemand=true

0 comments on commit f866f3b

Please sign in to comment.