Skip to content

Commit c97fd1f

Browse files
committed
Bump version to 1.3.1
1 parent 3003ebc commit c97fd1f

File tree

23 files changed

+34
-34
lines changed

23 files changed

+34
-34
lines changed

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:1.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
artifact = 'io.grpc:protoc-gen-grpc-java:1.3.1' // CURRENT_GRPC_VERSION
3636
}
3737
}
3838
generateProtoTasks {
@@ -58,10 +58,10 @@ dependencies {
5858
compile 'com.android.support:appcompat-v7:22.1.1'
5959
compile 'com.google.android.gms:play-services-base:7.3.0'
6060
// You need to build grpc-java to obtain these libraries below.
61-
compile 'io.grpc:grpc-protobuf-nano:1.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
62-
compile 'io.grpc:grpc-okhttp:1.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
63-
compile 'io.grpc:grpc-stub:1.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
64-
compile 'io.grpc:grpc-testing:1.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
61+
compile 'io.grpc:grpc-protobuf-nano:1.3.1' // CURRENT_GRPC_VERSION
62+
compile 'io.grpc:grpc-okhttp:1.3.1' // CURRENT_GRPC_VERSION
63+
compile 'io.grpc:grpc-stub:1.3.1' // CURRENT_GRPC_VERSION
64+
compile 'io.grpc:grpc-testing:1.3.1' // CURRENT_GRPC_VERSION
6565
compile 'javax.annotation:javax.annotation-api:1.2'
6666
}
6767

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 1.3.1-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.3.1)",
2222
comments = "Source: services.proto")
2323
public final 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 1.3.1-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.3.1)",
2222
comments = "Source: services.proto")
2323
public final class WorkerServiceGrpc {
2424

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ subprojects {
2929
}
3030

3131
group = "io.grpc"
32-
version = "1.3.1-SNAPSHOT" // CURRENT_GRPC_VERSION
32+
version = "1.3.1" // CURRENT_GRPC_VERSION
3333

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

examples/android/helloworld/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protobuf {
3434
artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0"
3535
}
3636
grpc {
37-
artifact = 'io.grpc:protoc-gen-grpc-java:1.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
37+
artifact = 'io.grpc:protoc-gen-grpc-java:1.3.1' // CURRENT_GRPC_VERSION
3838
}
3939
}
4040
generateProtoTasks {
@@ -54,8 +54,8 @@ dependencies {
5454
compile 'com.android.support:appcompat-v7:22.1.1'
5555

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

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.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
artifact = 'io.grpc:protoc-gen-grpc-java:1.3.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.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
56-
compile 'io.grpc:grpc-protobuf-lite:1.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
compile 'io.grpc:grpc-stub:1.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
55+
compile 'io.grpc:grpc-okhttp:1.3.1' // CURRENT_GRPC_VERSION
56+
compile 'io.grpc:grpc-protobuf-lite:1.3.1' // CURRENT_GRPC_VERSION
57+
compile 'io.grpc:grpc-stub:1.3.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.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
25+
def grpcVersion = '1.3.1' // CURRENT_GRPC_VERSION
2626

2727
dependencies {
2828
compile "io.grpc:grpc-netty:${grpcVersion}"

examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
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.3.1-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.3.1</version><!-- CURRENT_GRPC_VERSION -->
1010
<name>examples</name>
1111
<url>http://maven.apache.org</url>
1212
<properties>
13-
<grpc.version>1.3.1-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
13+
<grpc.version>1.3.1</grpc.version><!-- CURRENT_GRPC_VERSION -->
1414
</properties>
1515
<dependencies>
1616
<dependency>

examples/thrift/build.gradle

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

1313
// Feel free to delete the comment at the next line. It is just for safely
1414
// updating the version in our release process.
15-
def grpcVersion = '1.3.1-SNAPSHOT' // CURRENT_GRPC_VERSION
15+
def grpcVersion = '1.3.1' // CURRENT_GRPC_VERSION
1616

1717
dependencies {
1818
compile "io.grpc:grpc-stub:${grpcVersion}"

grpclb/src/generated/main/grpc/io/grpc/grpclb/LoadBalancerGrpc.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 1.3.1-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.3.1)",
2222
comments = "Source: load_balancer.proto")
2323
public final class LoadBalancerGrpc {
2424

services/src/generated/main/grpc/io/grpc/health/v1/HealthGrpc.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 1.3.1-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.3.1)",
2222
comments = "Source: health.proto")
2323
public final class HealthGrpc {
2424

services/src/generated/main/grpc/io/grpc/instrumentation/v1alpha/MonitoringGrpc.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 1.3.1-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.3.1)",
2222
comments = "Source: grpc/instrumentation/v1alpha/monitoring.proto")
2323
public final class MonitoringGrpc {
2424

services/src/generated/main/grpc/io/grpc/reflection/v1alpha/ServerReflectionGrpc.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 1.3.1-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.3.1)",
2222
comments = "Source: io/grpc/reflection/v1alpha/reflection.proto")
2323
public final class ServerReflectionGrpc {
2424

services/src/generated/test/grpc/io/grpc/reflection/testing/AnotherDynamicServiceGrpc.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 1.3.1-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.3.1)",
2525
comments = "Source: io/grpc/reflection/testing/dynamic_reflection_test.proto")
2626
public final class AnotherDynamicServiceGrpc {
2727

services/src/generated/test/grpc/io/grpc/reflection/testing/DynamicServiceGrpc.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 1.3.1-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.3.1)",
2525
comments = "Source: io/grpc/reflection/testing/dynamic_reflection_test.proto")
2626
public final class DynamicServiceGrpc {
2727

services/src/generated/test/grpc/io/grpc/reflection/testing/ReflectableServiceGrpc.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 1.3.1-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.3.1)",
2222
comments = "Source: io/grpc/reflection/testing/reflection_test.proto")
2323
public final class ReflectableServiceGrpc {
2424

testing-proto/src/generated/main/grpc/io/grpc/testing/integration/MetricsServiceGrpc.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 1.3.1-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.3.1)",
2222
comments = "Source: io/grpc/testing/integration/metrics.proto")
2323
public final class MetricsServiceGrpc {
2424

testing-proto/src/generated/main/grpc/io/grpc/testing/integration/ReconnectServiceGrpc.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 1.3.1-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.3.1)",
2525
comments = "Source: io/grpc/testing/integration/test.proto")
2626
public final class ReconnectServiceGrpc {
2727

testing-proto/src/generated/main/grpc/io/grpc/testing/integration/TestServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* </pre>
2323
*/
2424
@javax.annotation.Generated(
25-
value = "by gRPC proto compiler (version 1.3.1-SNAPSHOT)",
25+
value = "by gRPC proto compiler (version 1.3.1)",
2626
comments = "Source: io/grpc/testing/integration/test.proto")
2727
public final class TestServiceGrpc {
2828

testing-proto/src/generated/main/grpc/io/grpc/testing/integration/UnimplementedServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* </pre>
2323
*/
2424
@javax.annotation.Generated(
25-
value = "by gRPC proto compiler (version 1.3.1-SNAPSHOT)",
25+
value = "by gRPC proto compiler (version 1.3.1)",
2626
comments = "Source: io/grpc/testing/integration/test.proto")
2727
public final class UnimplementedServiceGrpc {
2828

0 commit comments

Comments
 (0)