Skip to content

Commit

Permalink
Merge pull request #31 from salesforce/release/0.7.2
Browse files Browse the repository at this point in the history
Prepare v0.7.2
  • Loading branch information
rmichela authored Dec 6, 2017
2 parents 2f9a1aa + b112f0a commit 49a95d9
Show file tree
Hide file tree
Showing 22 changed files with 31 additions and 26 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@ Reactive gRPC supports the following reactive programming models:
# Usage
See the readme in each technology-specific sub-directory for usage details.

* [Rx-Java](https://github.com/salesforce/reactive-grpc/tree/master/rx-java)
* [Spring Reactor](https://github.com/salesforce/reactive-grpc/tree/master/reactor)

# Demos

* [RxChat](https://github.com/salesforce/reactive-grpc/tree/master/demos/RxChat) - An IRC-like chat system built using RxJava and RxGrpc.
* [ReactorChat](https://github.com/salesforce/reactive-grpc/tree/master/demos/ReactorChat) - An IRC-like chat system using Spring Reactor and ReactorGrpc.
* [ReactorChat-Kotlin](https://github.com/salesforce/reactive-grpc/tree/master/demos/ReactorChat-Kotlin) - ReactorChat, but showing Kotlin integration.

# Back-pressure
Reactive gRPC stubs support bi-directional streaming with back-pressure. Under the hood, Reactive gRPC is built atop the vanilla
Expand Down
11 changes: 6 additions & 5 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Steps
1. Setup a pgp key
2. [Set up settings.xml](http://central.sonatype.org/pages/apache-maven.html)
3. **Make sure pom version is right (no -SNAPSHOT)**
4. `mvn clean deploy -Dmaven.test.skip -P public-release`
5. [Release the deployment from Nexus](http://central.sonatype.org/pages/releasing-the-deployment.html)
6. **Increment the pom version with -SNAPSHOT**
1. [Set up settings.xml](http://central.sonatype.org/pages/apache-maven.html)
1. **Make sure pom version is right (no -SNAPSHOT)**
1. Tag the release and push to github
1. `mvn clean deploy -Dmaven.test.skip -P public-release`
1. [Release the deployment from Nexus](http://central.sonatype.org/pages/releasing-the-deployment.html)
1. **Increment the pom version with -SNAPSHOT**

# Known issues
* Inappropriate ioctl for device
Expand Down
2 changes: 1 addition & 1 deletion demos/ReactorChat-Kotlin/ReactorChat-Client-Kt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>ReactorChat-Kotlin</artifactId>
<groupId>com.salesforce.servicelibs</groupId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion demos/ReactorChat-Kotlin/ReactorChat-Server-Kt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>ReactorChat-Kotlin</artifactId>
<groupId>com.salesforce.servicelibs</groupId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion demos/ReactorChat-Kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion demos/ReactorChat/ReactorChat-Client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>ReactorChat</artifactId>
<groupId>com.salesforce.servicelibs</groupId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion demos/ReactorChat/ReactorChat-Server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>ReactorChat</artifactId>
<groupId>com.salesforce.servicelibs</groupId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion demos/ReactorChat/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion demos/RxChat/RxChat-Client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>RxChat</artifactId>
<groupId>com.salesforce.servicelibs</groupId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion demos/RxChat/RxChat-Server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>RxChat</artifactId>
<groupId>com.salesforce.servicelibs</groupId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion demos/RxChat/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions gradle/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
group 'com.salesforce.servicelibs'
version '0.7.2-SNAPSHOT'
version '0.7.2'

apply plugin: 'java'
apply plugin: "idea"
apply plugin: 'com.google.protobuf'

sourceCompatibility = 1.8

def reactiveGrpcVersion = '0.7.2-SNAPSHOT'
def reactiveGrpcVersion = '0.7.2'
def grpcVersion = '1.7.0'
def protobufVersion = '3.4.0'

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<packaging>pom</packaging>

<name>reactive-grpc</name>
Expand Down
2 changes: 1 addition & 1 deletion reactive-grpc-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion reactor/reactor-grpc-stub/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion reactor/reactor-grpc-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion reactor/reactor-grpc-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion reactor/reactor-grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion rx-java/rxgrpc-stub/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion rx-java/rxgrpc-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion rx-java/rxgrpc-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion rx-java/rxgrpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>reactive-grpc</artifactId>
<version>0.7.2-SNAPSHOT</version>
<version>0.7.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down

0 comments on commit 49a95d9

Please sign in to comment.