Skip to content

Commit 71beeb9

Browse files
author
nmittler
committed
Preparing for 0.7.1 release.
1 parent cdd81d2 commit 71beeb9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

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

2222
Or for Gradle, add to your dependencies:
2323
```gradle
24-
compile 'io.grpc:grpc-all:0.7.0'
24+
compile 'io.grpc:grpc-all:0.7.1'
2525
```
2626

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

2929
Development snapshots are available in [Sonatypes's snapshot
3030
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -48,7 +48,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
4848
<configuration>
4949
<protocArtifact>com.google.protobuf:protoc:3.0.0-alpha-2:exe:${os.detected.classifier}</protocArtifact>
5050
<pluginId>grpc-java</pluginId>
51-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.7.0:exe:${os.detected.classifier}</pluginArtifact>
51+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.7.1:exe:${os.detected.classifier}</pluginArtifact>
5252
</configuration>
5353
<executions>
5454
<execution>
@@ -90,7 +90,7 @@ sourceSets {
9090
}
9191
9292
protocDep = "com.google.protobuf:protoc:3.0.0-alpha-2"
93-
protobufNativeCodeGenPluginDeps = ["grpc:io.grpc:protoc-gen-grpc-java:0.7.0"]
93+
protobufNativeCodeGenPluginDeps = ["grpc:io.grpc:protoc-gen-grpc-java:0.7.1"]
9494
```
9595

9696
[protobuf-gradle-plugin]: https://github.com/google/protobuf-gradle-plugin

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ subprojects {
1818
apply plugin: "jacoco"
1919

2020
group = "io.grpc"
21-
version = "0.7.1-SNAPSHOT"
21+
version = "0.7.1"
2222

2323
sourceCompatibility = 1.6
2424
targetCompatibility = 1.6

0 commit comments

Comments
 (0)