Skip to content

Commit

Permalink
Bump version to v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ejona86 committed Jan 22, 2016
1 parent 2a43827 commit 67d9e26
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@ 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.12.0</version>
</dependency>
```

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

For Android client, you only need to depend on the needed sub-projects, such as:
```gradle
compile 'io.grpc:grpc-okhttp:0.9.0'
compile 'io.grpc:grpc-protobuf-nano:0.9.0'
compile 'io.grpc:grpc-stub:0.9.0'
compile 'io.grpc:grpc-okhttp:0.12.0'
compile 'io.grpc:grpc-protobuf-nano:0.12.0'
compile 'io.grpc:grpc-stub:0.12.0'
```

[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.12.0

Development snapshots are available in [Sonatypes's snapshot
repository](https://oss.sonatype.org/content/repositories/snapshots/).
Expand Down Expand Up @@ -89,7 +89,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.12.0:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -130,7 +130,7 @@ protobuf {
}
plugins {
grpc {
artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
artifact = 'io.grpc:protoc-gen-grpc-java:0.12.0'
}
}
generateProtoTasks {
Expand Down
10 changes: 5 additions & 5 deletions android-interop-testing/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protobuf {
}
plugins {
grpc {
artifact = 'io.grpc:protoc-gen-grpc-java:0.10.0-SNAPSHOT'
artifact = 'io.grpc:protoc-gen-grpc-java:0.12.0'
}
}
generateProtoTasks {
Expand Down Expand Up @@ -63,9 +63,9 @@ 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-protobuf-nano:0.10.0-SNAPSHOT'
compile 'io.grpc:grpc-okhttp:0.10.0-SNAPSHOT'
compile 'io.grpc:grpc-stub:0.10.0-SNAPSHOT'
compile 'io.grpc:grpc-testing:0.10.0-SNAPSHOT'
compile 'io.grpc:grpc-protobuf-nano:0.12.0'
compile 'io.grpc:grpc-okhttp:0.12.0'
compile 'io.grpc:grpc-stub:0.12.0'
compile 'io.grpc:grpc-testing:0.12.0'
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.10.0-SNAPSHOT"
version = "0.12.0"

sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand Down
8 changes: 4 additions & 4 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.12.0'
}
}
generateProtoTasks {
Expand Down Expand Up @@ -60,7 +60,7 @@ dependencies {

// You need to build the https://github.com/grpc/grpc-java
// to obtain these libraries below.
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-protobuf-nano:0.12.0'
compile 'io.grpc:grpc-okhttp:0.12.0'
compile 'io.grpc:grpc-stub:0.12.0'
}

0 comments on commit 67d9e26

Please sign in to comment.