Skip to content

Commit

Permalink
Bump to v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
carl-mastrangelo committed Jan 22, 2016
1 parent 829e7e8 commit c80a0b2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ Download [the JAR][]. Or for Maven, add to your `pom.xml`:
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-all</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
</dependency>
```

Or for Gradle, add to your dependencies:
```gradle
compile 'io.grpc:grpc-all:0.9.0'
compile 'io.grpc:grpc-all:0.9.1'
```

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

Development snapshots are available in [Sonatypes's snapshot
repository](https://oss.sonatype.org/content/repositories/snapshots/).
Expand Down Expand Up @@ -71,7 +71,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
-->
<protocArtifact>com.google.protobuf:protoc:3.0.0-beta-1:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.9.0:exe:${os.detected.classifier}</pluginArtifact>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.9.1:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -112,7 +112,7 @@ protobuf {
}
plugins {
grpc {
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1'
}
}
generateProtoTasks {
Expand Down
12 changes: 6 additions & 6 deletions android-interop-testing/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protobuf {
}
plugins {
grpc {
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1-SNAPSHOT'
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1'
}
}
generateProtoTasks {
Expand Down Expand Up @@ -64,10 +64,10 @@ dependencies {
compile 'com.squareup.okhttp:okhttp:2.2.0'
testCompile 'junit:junit:4.12'
// You need to build grpc-java to obtain these libraries below.
compile 'io.grpc:grpc-core:0.9.1-SNAPSHOT'
compile 'io.grpc:grpc-protobuf-nano:0.9.1-SNAPSHOT'
compile 'io.grpc:grpc-okhttp:0.9.1-SNAPSHOT'
compile 'io.grpc:grpc-stub:0.9.1-SNAPSHOT'
compile 'io.grpc:grpc-testing:0.9.1-SNAPSHOT'
compile 'io.grpc:grpc-core:0.9.1'
compile 'io.grpc:grpc-protobuf-nano:0.9.1'
compile 'io.grpc:grpc-okhttp:0.9.1'
compile 'io.grpc:grpc-stub:0.9.1'
compile 'io.grpc:grpc-testing:0.9.1'
compile 'javax.annotation:javax.annotation-api:1.2'
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ subprojects {
apply plugin: "com.google.osdetector"

group = "io.grpc"
version = "0.9.1-SNAPSHOT"
version = "0.9.1"

sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand Down
10 changes: 5 additions & 5 deletions examples/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protobuf {
}
plugins {
grpc {
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1'
}
}
generateProtoTasks {
Expand Down Expand Up @@ -60,8 +60,8 @@ dependencies {

// You need to build the https://github.com/grpc/grpc-java
// to obtain these libraries below.
compile 'io.grpc:grpc-core:0.9.0'
compile 'io.grpc:grpc-protobuf-nano:0.9.0'
compile 'io.grpc:grpc-okhttp:0.9.0'
compile 'io.grpc:grpc-stub:0.9.0'
compile 'io.grpc:grpc-core:0.9.1'
compile 'io.grpc:grpc-protobuf-nano:0.9.1'
compile 'io.grpc:grpc-okhttp:0.9.1'
compile 'io.grpc:grpc-stub:0.9.1'
}

0 comments on commit c80a0b2

Please sign in to comment.