Skip to content

Commit 798f9f0

Browse files
Cut the v0.14.0 release
1 parent 9de87e3 commit 798f9f0

File tree

16 files changed

+30
-30
lines changed

16 files changed

+30
-30
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,23 @@ Download [the JAR][]. Or for Maven, add to your `pom.xml`:
2727
<dependency>
2828
<groupId>io.grpc</groupId>
2929
<artifactId>grpc-all</artifactId>
30-
<version>0.13.2</version>
30+
<version>0.14.0</version>
3131
</dependency>
3232
```
3333

3434
Or for Gradle, add to your dependencies:
3535
```gradle
36-
compile 'io.grpc:grpc-all:0.13.2'
36+
compile 'io.grpc:grpc-all:0.14.0'
3737
```
3838

3939
For Android client, you only need to depend on the needed sub-projects, such as:
4040
```gradle
41-
compile 'io.grpc:grpc-okhttp:0.13.2'
42-
compile 'io.grpc:grpc-protobuf-nano:0.13.2'
43-
compile 'io.grpc:grpc-stub:0.13.2'
41+
compile 'io.grpc:grpc-okhttp:0.14.0'
42+
compile 'io.grpc:grpc-protobuf-nano:0.14.0'
43+
compile 'io.grpc:grpc-stub:0.14.0'
4444
```
4545

46-
[the JAR]: https://search.maven.org/remote_content?g=io.grpc&a=grpc-all&v=0.13.2
46+
[the JAR]: https://search.maven.org/remote_content?g=io.grpc&a=grpc-all&v=0.14.0
4747

4848
Development snapshots are available in [Sonatypes's snapshot
4949
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -75,7 +75,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
7575
-->
7676
<protocArtifact>com.google.protobuf:protoc:3.0.0-beta-2:exe:${os.detected.classifier}</protocArtifact>
7777
<pluginId>grpc-java</pluginId>
78-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.13.2:exe:${os.detected.classifier}</pluginArtifact>
78+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.14.0:exe:${os.detected.classifier}</pluginArtifact>
7979
</configuration>
8080
<executions>
8181
<execution>
@@ -116,7 +116,7 @@ protobuf {
116116
}
117117
plugins {
118118
grpc {
119-
artifact = 'io.grpc:protoc-gen-grpc-java:0.13.2'
119+
artifact = 'io.grpc:protoc-gen-grpc-java:0.14.0'
120120
}
121121
}
122122
generateProtoTasks {

android-interop-testing/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protobuf {
3232
}
3333
plugins {
3434
grpc {
35-
artifact = 'io.grpc:protoc-gen-grpc-java:0.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
artifact = 'io.grpc:protoc-gen-grpc-java:0.14.0' // CURRENT_GRPC_VERSION
3636
}
3737
}
3838
generateProtoTasks {
@@ -61,9 +61,9 @@ dependencies {
6161
compile 'com.google.guava:guava:18.0'
6262
compile 'com.squareup.okhttp:okhttp:2.2.0'
6363
// You need to build grpc-java to obtain these libraries below.
64-
compile 'io.grpc:grpc-protobuf-nano:0.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
65-
compile 'io.grpc:grpc-okhttp:0.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
66-
compile 'io.grpc:grpc-stub:0.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
67-
compile 'io.grpc:grpc-testing:0.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
64+
compile 'io.grpc:grpc-protobuf-nano:0.14.0' // CURRENT_GRPC_VERSION
65+
compile 'io.grpc:grpc-okhttp:0.14.0' // CURRENT_GRPC_VERSION
66+
compile 'io.grpc:grpc-stub:0.14.0' // CURRENT_GRPC_VERSION
67+
compile 'io.grpc:grpc-testing:0.14.0' // CURRENT_GRPC_VERSION
6868
compile 'javax.annotation:javax.annotation-api:1.2'
6969
}

benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
*/
2020
@javax.annotation.Generated(
21-
value = "by gRPC proto compiler (version 0.14.0-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 0.14.0)",
2222
comments = "Source: services.proto")
2323
public class BenchmarkServiceGrpc {
2424

benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
*/
2020
@javax.annotation.Generated(
21-
value = "by gRPC proto compiler (version 0.14.0-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 0.14.0)",
2222
comments = "Source: services.proto")
2323
public class WorkerServiceGrpc {
2424

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ subprojects {
1919
apply plugin: "com.google.osdetector"
2020

2121
group = "io.grpc"
22-
version = "0.14.0-SNAPSHOT" // CURRENT_GRPC_VERSION
22+
version = "0.14.0" // CURRENT_GRPC_VERSION
2323

2424
sourceCompatibility = 1.6
2525
targetCompatibility = 1.6

compiler/src/test/golden/TestService.java.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall;
2121
* </pre>
2222
*/
2323
@javax.annotation.Generated(
24-
value = "by gRPC proto compiler (version 0.14.0-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 0.14.0)",
2525
comments = "Source: test.proto")
2626
public class TestServiceGrpc {
2727

compiler/src/testLite/golden/TestService.java.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall;
2121
* </pre>
2222
*/
2323
@javax.annotation.Generated(
24-
value = "by gRPC proto compiler (version 0.14.0-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 0.14.0)",
2525
comments = "Source: test.proto")
2626
public class TestServiceGrpc {
2727

compiler/src/testNano/golden/TestService.java.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import java.io.IOException;
2323
* </pre>
2424
*/
2525
@javax.annotation.Generated(
26-
value = "by gRPC proto compiler (version 0.14.0-SNAPSHOT)",
26+
value = "by gRPC proto compiler (version 0.14.0)",
2727
comments = "Source: test.proto")
2828
public class TestServiceGrpc {
2929

examples/android/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protobuf {
3131
}
3232
plugins {
3333
grpc {
34-
artifact = 'io.grpc:protoc-gen-grpc-java:0.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
34+
artifact = 'io.grpc:protoc-gen-grpc-java:0.14.0' // CURRENT_GRPC_VERSION
3535
}
3636
}
3737
generateProtoTasks {
@@ -59,8 +59,8 @@ dependencies {
5959
compile 'com.google.guava:guava:18.0'
6060
compile 'com.squareup.okhttp:okhttp:2.2.0'
6161
// You need to build grpc-java to obtain these libraries below.
62-
compile 'io.grpc:grpc-okhttp:0.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
63-
compile 'io.grpc:grpc-protobuf-nano:0.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
64-
compile 'io.grpc:grpc-stub:0.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
62+
compile 'io.grpc:grpc-okhttp:0.14.0' // CURRENT_GRPC_VERSION
63+
compile 'io.grpc:grpc-protobuf-nano:0.14.0' // CURRENT_GRPC_VERSION
64+
compile 'io.grpc:grpc-stub:0.14.0' // CURRENT_GRPC_VERSION
6565
compile 'javax.annotation:javax.annotation-api:1.2'
6666
}

examples/src/generated/main/grpc/io/grpc/examples/helloworld/GreeterGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* </pre>
2222
*/
2323
@javax.annotation.Generated(
24-
value = "by gRPC proto compiler (version 0.14.0-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 0.14.0)",
2525
comments = "Source: helloworld.proto")
2626
public class GreeterGrpc {
2727

0 commit comments

Comments
 (0)