Skip to content

Commit 02f31f4

Browse files
authored
Merge pull request #70 from salesforce/release/0.7.0
v0.7.0
2 parents f771cf2 + 16858e4 commit 02f31f4

File tree

11 files changed

+41
-27
lines changed

11 files changed

+41
-27
lines changed

RELEASING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Steps
2+
1. Setup a pgp key
3+
1. [Set up settings.xml](http://central.sonatype.org/pages/apache-maven.html)
4+
1. **Make sure pom version is right (no -SNAPSHOT)**
5+
1. Tag the release and push to github
6+
1. `mvn clean deploy -Dmaven.test.skip -P public-release`
7+
1. [Release the deployment from Nexus](http://central.sonatype.org/pages/releasing-the-deployment.html)
8+
1. **Increment the pom version with -SNAPSHOT**
9+
10+
# Known issues
11+
* Inappropriate ioctl for device
12+
```bash
13+
> GPG_TTY=$(tty)
14+
> export GPG_TTY
15+
```

Releasing.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

demos/grpc-java-contrib-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>grpc-contrib-parent</artifactId>
77
<groupId>com.salesforce.servicelibs</groupId>
8-
<version>0.6.2-SNAPSHOT</version>
8+
<version>0.7.0</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

demos/grpc-java-contrib-demo/time-client-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>grpc-java-contrib-demo</artifactId>
77
<groupId>com.salesforce.servicelibs</groupId>
8-
<version>0.6.2-SNAPSHOT</version>
8+
<version>0.7.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

demos/grpc-java-contrib-demo/time-service-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>grpc-java-contrib-demo</artifactId>
77
<groupId>com.salesforce.servicelibs</groupId>
8-
<version>0.6.2-SNAPSHOT</version>
8+
<version>0.7.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

grpc-contrib/README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
[![Javadocs](https://javadoc.io/badge/com.salesforce.servicelibs/grpc-contrib.svg)](https://javadoc.io/doc/com.salesforce.servicelibs/grpc-contrib)
22
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/grpc-contrib/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/grpc-contrib)
33

4-
In this module
4+
Classes
55
==============
6-
* *FutureChain.java* - A fluent interface for chaining `ListenableFuture` operations together.
7-
* *MoreDurations.java* - JDK8 adapters for the protobuf `Duration` type.
8-
* *MoreFutures.java* - JDK8 adapters for `ListenableFuture`.
9-
* *MoreTimestamps.java* - JDK8 adapters for the protobuf `Timestamp` type.
10-
* *Servers.java* - Additional helper methods for working with `Server` instances.
6+
* *FallbackResolver* - Allows the use of multiple gRPC `NameResolver`s.
7+
* *FutureChain* - A fluent interface for chaining `ListenableFuture` operations together.
8+
* *LambdaStreamObserver* - Create gRPC `StreamObserver`s using JDK8 lambda syntax for brevity.
9+
* *MoreDurations* - JDK8 adapters for the protobuf `Duration` type.
10+
* *MoreFutures* - JDK8 adapters for `ListenableFuture`.
11+
* *MoreMetadata* - JSON and Protobuf marshallers for HTTP/2 request headers.
12+
* *MoreTimestamps* - JDK8 adapters for the protobuf `Timestamp` type.
13+
* *Servers* - Additional helper methods for working with `Server` instances.
14+
* *StaticResolver* - a gRPC `NameResolver` that always resolves to the same address.
15+
* *Statuses* - Utility methods for working with gRPC `Status` objects.
16+
17+
Subpackages
18+
===============
19+
* *context* - Implements an ambient context that is transparently passed from service to service.
20+
* *instancemode* - Adds per-call and per-session service instantiation modes to gRPC.
21+
* *interceptor* - Useful client and server interceptor implementations.
22+
* *session* - Adds client session tracking support to gRPC.

grpc-contrib/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<artifactId>grpc-contrib-parent</artifactId>
1414
<groupId>com.salesforce.servicelibs</groupId>
15-
<version>0.6.2-SNAPSHOT</version>
15+
<version>0.7.0</version>
1616
</parent>
1717
<modelVersion>4.0.0</modelVersion>
1818

grpc-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<artifactId>grpc-contrib-parent</artifactId>
1414
<groupId>com.salesforce.servicelibs</groupId>
15-
<version>0.6.2-SNAPSHOT</version>
15+
<version>0.7.0</version>
1616
</parent>
1717
<modelVersion>4.0.0</modelVersion>
1818

jprotoc-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<artifactId>grpc-contrib-parent</artifactId>
1414
<groupId>com.salesforce.servicelibs</groupId>
15-
<version>0.6.2-SNAPSHOT</version>
15+
<version>0.7.0</version>
1616
</parent>
1717
<modelVersion>4.0.0</modelVersion>
1818

jprotoc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<artifactId>grpc-contrib-parent</artifactId>
1414
<groupId>com.salesforce.servicelibs</groupId>
15-
<version>0.6.2-SNAPSHOT</version>
15+
<version>0.7.0</version>
1616
</parent>
1717
<modelVersion>4.0.0</modelVersion>
1818

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<groupId>com.salesforce.servicelibs</groupId>
1515
<artifactId>grpc-contrib-parent</artifactId>
1616
<packaging>pom</packaging>
17-
<version>0.6.2-SNAPSHOT</version>
17+
<version>0.7.0</version>
1818

1919
<name>grpc-java-contrib</name>
2020
<description>Useful extensions for the grpc-java library.</description>

0 commit comments

Comments
 (0)