Skip to content

Commit 2c83020

Browse files
committed
Bump version to 1.9.1
1 parent 11c2d73 commit 2c83020

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

android-interop-testing/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protobuf {
3434
}
3535
plugins {
3636
grpc {
37-
artifact = 'io.grpc:protoc-gen-grpc-java:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
37+
artifact = 'io.grpc:protoc-gen-grpc-java:1.9.1' // CURRENT_GRPC_VERSION
3838
}
3939
}
4040
generateProtoTasks {
@@ -62,10 +62,10 @@ dependencies {
6262
compile 'com.android.support:support-annotations:23.1.1'
6363
compile 'com.google.android.gms:play-services-base:7.3.0'
6464
// You need to build grpc-java to obtain the grpc libraries below.
65-
compile 'io.grpc:grpc-protobuf-nano:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
66-
compile 'io.grpc:grpc-okhttp:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
67-
compile 'io.grpc:grpc-stub:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
68-
compile 'io.grpc:grpc-testing:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
65+
compile 'io.grpc:grpc-protobuf-nano:1.9.1' // CURRENT_GRPC_VERSION
66+
compile 'io.grpc:grpc-okhttp:1.9.1' // CURRENT_GRPC_VERSION
67+
compile 'io.grpc:grpc-stub:1.9.1' // CURRENT_GRPC_VERSION
68+
compile 'io.grpc:grpc-testing:1.9.1' // CURRENT_GRPC_VERSION
6969
compile 'javax.annotation:javax.annotation-api:1.2'
7070
compile 'junit:junit:4.12'
7171

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ subprojects {
5050
idea.module.inheritOutputDirs = true
5151

5252
group = "io.grpc"
53-
version = "1.9.1-SNAPSHOT" // CURRENT_GRPC_VERSION
53+
version = "1.9.1" // CURRENT_GRPC_VERSION
5454

5555
sourceCompatibility = 1.6
5656
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.asyncUnimplementedUnaryCall;
2121
* </pre>
2222
*/
2323
@javax.annotation.Generated(
24-
value = "by gRPC proto compiler (version 1.9.1-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.9.1)",
2525
comments = "Source: test.proto")
2626
public final 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.asyncUnimplementedUnaryCall;
2121
* </pre>
2222
*/
2323
@javax.annotation.Generated(
24-
value = "by gRPC proto compiler (version 1.9.1-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.9.1)",
2525
comments = "Source: test.proto")
2626
public final 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 1.9.1-SNAPSHOT)",
26+
value = "by gRPC proto compiler (version 1.9.1)",
2727
comments = "Source: test.proto")
2828
public final class TestServiceGrpc {
2929

core/src/main/java/io/grpc/internal/GrpcUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public byte[] parseAsciiString(byte[] serialized) {
195195

196196
public static final Splitter ACCEPT_ENCODING_SPLITTER = Splitter.on(',').trimResults();
197197

198-
private static final String IMPLEMENTATION_VERSION = "1.9.1-SNAPSHOT"; // CURRENT_GRPC_VERSION
198+
private static final String IMPLEMENTATION_VERSION = "1.9.1"; // CURRENT_GRPC_VERSION
199199

200200
/**
201201
* The default delay in nanos before we send a keepalive.

examples/android/helloworld/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protobuf {
3535
artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0"
3636
}
3737
grpc {
38-
artifact = 'io.grpc:protoc-gen-grpc-java:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
38+
artifact = 'io.grpc:protoc-gen-grpc-java:1.9.1' // CURRENT_GRPC_VERSION
3939
}
4040
}
4141
generateProtoTasks {
@@ -55,8 +55,8 @@ dependencies {
5555
compile 'com.android.support:appcompat-v7:22.1.1'
5656

5757
// You need to build grpc-java to obtain these libraries below.
58-
compile 'io.grpc:grpc-okhttp:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
59-
compile 'io.grpc:grpc-protobuf-lite:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
60-
compile 'io.grpc:grpc-stub:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
58+
compile 'io.grpc:grpc-okhttp:1.9.1' // CURRENT_GRPC_VERSION
59+
compile 'io.grpc:grpc-protobuf-lite:1.9.1' // CURRENT_GRPC_VERSION
60+
compile 'io.grpc:grpc-stub:1.9.1' // CURRENT_GRPC_VERSION
6161
compile 'javax.annotation:javax.annotation-api:1.2'
6262
}

examples/android/routeguide/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protobuf {
3232
artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0"
3333
}
3434
grpc {
35-
artifact = 'io.grpc:protoc-gen-grpc-java:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
artifact = 'io.grpc:protoc-gen-grpc-java:1.9.1' // CURRENT_GRPC_VERSION
3636
}
3737
}
3838
generateProtoTasks {
@@ -52,8 +52,8 @@ dependencies {
5252
compile 'com.android.support:appcompat-v7:23.+'
5353

5454
// You need to build grpc-java to obtain these libraries below.
55-
compile 'io.grpc:grpc-okhttp:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
56-
compile 'io.grpc:grpc-protobuf-lite:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
compile 'io.grpc:grpc-stub:1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
55+
compile 'io.grpc:grpc-okhttp:1.9.1' // CURRENT_GRPC_VERSION
56+
compile 'io.grpc:grpc-protobuf-lite:1.9.1' // CURRENT_GRPC_VERSION
57+
compile 'io.grpc:grpc-stub:1.9.1' // CURRENT_GRPC_VERSION
5858
compile 'javax.annotation:javax.annotation-api:1.2'
5959
}

examples/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repositories {
2222

2323
// Feel free to delete the comment at the next line. It is just for safely
2424
// updating the version in our release process.
25-
def grpcVersion = '1.9.1-SNAPSHOT' // CURRENT_GRPC_VERSION
25+
def grpcVersion = '1.9.1' // CURRENT_GRPC_VERSION
2626

2727
dependencies {
2828
compile "com.google.api.grpc:proto-google-common-protos:1.0.0"

examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<packaging>jar</packaging>
77
<!-- Feel free to delete the comment at the end of these lines. It is just
88
for safely updating the version in our release process. -->
9-
<version>1.9.1-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.9.1</version><!-- CURRENT_GRPC_VERSION -->
1010
<name>examples</name>
1111
<url>http://maven.apache.org</url>
1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<grpc.version>1.9.1-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
14+
<grpc.version>1.9.1</grpc.version><!-- CURRENT_GRPC_VERSION -->
1515
</properties>
1616
<dependencies>
1717
<dependency>

0 commit comments

Comments
 (0)