Skip to content

Commit 67d9e26

Browse files
committed
Bump version to v0.12.0
1 parent 2a43827 commit 67d9e26

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
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.9.0</version>
30+
<version>0.12.0</version>
3131
</dependency>
3232
```
3333

3434
Or for Gradle, add to your dependencies:
3535
```gradle
36-
compile 'io.grpc:grpc-all:0.9.0'
36+
compile 'io.grpc:grpc-all:0.12.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.9.0'
42-
compile 'io.grpc:grpc-protobuf-nano:0.9.0'
43-
compile 'io.grpc:grpc-stub:0.9.0'
41+
compile 'io.grpc:grpc-okhttp:0.12.0'
42+
compile 'io.grpc:grpc-protobuf-nano:0.12.0'
43+
compile 'io.grpc:grpc-stub:0.12.0'
4444
```
4545

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

4848
Development snapshots are available in [Sonatypes's snapshot
4949
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -89,7 +89,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
8989
-->
9090
<protocArtifact>com.google.protobuf:protoc:3.0.0-beta-1:exe:${os.detected.classifier}</protocArtifact>
9191
<pluginId>grpc-java</pluginId>
92-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.9.0:exe:${os.detected.classifier}</pluginArtifact>
92+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.12.0:exe:${os.detected.classifier}</pluginArtifact>
9393
</configuration>
9494
<executions>
9595
<execution>
@@ -130,7 +130,7 @@ protobuf {
130130
}
131131
plugins {
132132
grpc {
133-
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
133+
artifact = 'io.grpc:protoc-gen-grpc-java:0.12.0'
134134
}
135135
}
136136
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.10.0-SNAPSHOT'
35+
artifact = 'io.grpc:protoc-gen-grpc-java:0.12.0'
3636
}
3737
}
3838
generateProtoTasks {
@@ -63,9 +63,9 @@ dependencies {
6363
compile 'com.squareup.okhttp:okhttp:2.2.0'
6464
testCompile 'junit:junit:4.12'
6565
// You need to build grpc-java to obtain these libraries below.
66-
compile 'io.grpc:grpc-protobuf-nano:0.10.0-SNAPSHOT'
67-
compile 'io.grpc:grpc-okhttp:0.10.0-SNAPSHOT'
68-
compile 'io.grpc:grpc-stub:0.10.0-SNAPSHOT'
69-
compile 'io.grpc:grpc-testing:0.10.0-SNAPSHOT'
66+
compile 'io.grpc:grpc-protobuf-nano:0.12.0'
67+
compile 'io.grpc:grpc-okhttp:0.12.0'
68+
compile 'io.grpc:grpc-stub:0.12.0'
69+
compile 'io.grpc:grpc-testing:0.12.0'
7070
compile 'javax.annotation:javax.annotation-api:1.2'
7171
}

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.10.0-SNAPSHOT"
22+
version = "0.12.0"
2323

2424
sourceCompatibility = 1.6
2525
targetCompatibility = 1.6

examples/android/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ protobuf {
2929
}
3030
plugins {
3131
grpc {
32-
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
32+
artifact = 'io.grpc:protoc-gen-grpc-java:0.12.0'
3333
}
3434
}
3535
generateProtoTasks {
@@ -60,7 +60,7 @@ dependencies {
6060

6161
// You need to build the https://github.com/grpc/grpc-java
6262
// to obtain these libraries below.
63-
compile 'io.grpc:grpc-protobuf-nano:0.9.0'
64-
compile 'io.grpc:grpc-okhttp:0.9.0'
65-
compile 'io.grpc:grpc-stub:0.9.0'
63+
compile 'io.grpc:grpc-protobuf-nano:0.12.0'
64+
compile 'io.grpc:grpc-okhttp:0.12.0'
65+
compile 'io.grpc:grpc-stub:0.12.0'
6666
}

0 commit comments

Comments
 (0)