Skip to content

Commit

Permalink
Updating version to 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nmittler committed Jul 13, 2015
1 parent 7ae4158 commit a0060c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ Download [the JAR][]. Or for Maven, add to your `pom.xml`:
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-all</artifactId>
<version>0.7.1</version>
<version>0.7.2</version>
</dependency>
```

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

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

Development snapshots are available in [Sonatypes's snapshot
repository](https://oss.sonatype.org/content/repositories/snapshots/).
Expand All @@ -48,7 +48,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.0.0-alpha-2:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.7.1:exe:${os.detected.classifier}</pluginArtifact>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.7.2:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -90,7 +90,7 @@ sourceSets {
}
protocDep = "com.google.protobuf:protoc:3.0.0-alpha-2"
protobufNativeCodeGenPluginDeps = ["grpc:io.grpc:protoc-gen-grpc-java:0.7.1"]
protobufNativeCodeGenPluginDeps = ["grpc:io.grpc:protoc-gen-grpc-java:0.7.2"]
```

[protobuf-gradle-plugin]: https://github.com/google/protobuf-gradle-plugin
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ subprojects {
apply plugin: "jacoco"

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

sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand Down

0 comments on commit a0060c8

Please sign in to comment.