Skip to content

Commit c80a0b2

Browse files
Bump to v0.9.1
1 parent 829e7e8 commit c80a0b2

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ Download [the JAR][]. Or for Maven, add to your `pom.xml`:
1616
<dependency>
1717
<groupId>io.grpc</groupId>
1818
<artifactId>grpc-all</artifactId>
19-
<version>0.9.0</version>
19+
<version>0.9.1</version>
2020
</dependency>
2121
```
2222

2323
Or for Gradle, add to your dependencies:
2424
```gradle
25-
compile 'io.grpc:grpc-all:0.9.0'
25+
compile 'io.grpc:grpc-all:0.9.1'
2626
```
2727

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

3030
Development snapshots are available in [Sonatypes's snapshot
3131
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -71,7 +71,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
7171
-->
7272
<protocArtifact>com.google.protobuf:protoc:3.0.0-beta-1:exe:${os.detected.classifier}</protocArtifact>
7373
<pluginId>grpc-java</pluginId>
74-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.9.0:exe:${os.detected.classifier}</pluginArtifact>
74+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.9.1:exe:${os.detected.classifier}</pluginArtifact>
7575
</configuration>
7676
<executions>
7777
<execution>
@@ -112,7 +112,7 @@ protobuf {
112112
}
113113
plugins {
114114
grpc {
115-
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
115+
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1'
116116
}
117117
}
118118
generateProtoTasks {

android-interop-testing/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protobuf {
3333
}
3434
plugins {
3535
grpc {
36-
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1-SNAPSHOT'
36+
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1'
3737
}
3838
}
3939
generateProtoTasks {
@@ -64,10 +64,10 @@ dependencies {
6464
compile 'com.squareup.okhttp:okhttp:2.2.0'
6565
testCompile 'junit:junit:4.12'
6666
// You need to build grpc-java to obtain these libraries below.
67-
compile 'io.grpc:grpc-core:0.9.1-SNAPSHOT'
68-
compile 'io.grpc:grpc-protobuf-nano:0.9.1-SNAPSHOT'
69-
compile 'io.grpc:grpc-okhttp:0.9.1-SNAPSHOT'
70-
compile 'io.grpc:grpc-stub:0.9.1-SNAPSHOT'
71-
compile 'io.grpc:grpc-testing:0.9.1-SNAPSHOT'
67+
compile 'io.grpc:grpc-core:0.9.1'
68+
compile 'io.grpc:grpc-protobuf-nano:0.9.1'
69+
compile 'io.grpc:grpc-okhttp:0.9.1'
70+
compile 'io.grpc:grpc-stub:0.9.1'
71+
compile 'io.grpc:grpc-testing:0.9.1'
7272
compile 'javax.annotation:javax.annotation-api:1.2'
7373
}

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

2424
sourceCompatibility = 1.6
2525
targetCompatibility = 1.6

examples/android/app/build.gradle

Lines changed: 5 additions & 5 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.9.1'
3333
}
3434
}
3535
generateProtoTasks {
@@ -60,8 +60,8 @@ 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-core:0.9.0'
64-
compile 'io.grpc:grpc-protobuf-nano:0.9.0'
65-
compile 'io.grpc:grpc-okhttp:0.9.0'
66-
compile 'io.grpc:grpc-stub:0.9.0'
63+
compile 'io.grpc:grpc-core:0.9.1'
64+
compile 'io.grpc:grpc-protobuf-nano:0.9.1'
65+
compile 'io.grpc:grpc-okhttp:0.9.1'
66+
compile 'io.grpc:grpc-stub:0.9.1'
6767
}

0 commit comments

Comments
 (0)