Skip to content

Commit

Permalink
Release 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yidongnan committed Aug 16, 2019
1 parent 4e418c7 commit 56a8108
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Java技术交流群:294712648 <a target="_blank" href="http://shang.qq.com/wpa

2.x.x.RELEASE 支持 Spring Boot 2.1+ & Spring Cloud Greenwich。

最新的版本:``2.5.0.RELEASE``
最新的版本:``2.5.1.RELEASE``

(使用 `2.4.0.RELEASE` 版本可以支持 Spring Boot 2.0.X & Spring Cloud Finchley).

Expand All @@ -56,15 +56,15 @@ Java技术交流群:294712648 <a target="_blank" href="http://shang.qq.com/wpa
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-spring-boot-starter</artifactId>
<version>2.5.0.RELEASE</version>
<version>2.5.1.RELEASE</version>
</dependency>
````

如果使用的 Gradle,添加如下依赖

````gradle
dependencies {
compile 'net.devh:grpc-spring-boot-starter:2.5.0.RELEASE'
compile 'net.devh:grpc-spring-boot-starter:2.5.1.RELEASE'
}
````

Expand All @@ -76,15 +76,15 @@ dependencies {
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-server-spring-boot-starter</artifactId>
<version>2.5.0.RELEASE</version>
<version>2.5.1.RELEASE</version>
</dependency>
````

如果使用的 Gradle,添加如下依赖

````gradle
dependencies {
compile 'net.devh:grpc-server-spring-boot-starter:2.5.0.RELEASE'
compile 'net.devh:grpc-server-spring-boot-starter:2.5.1.RELEASE'
}
````

Expand Down Expand Up @@ -249,15 +249,15 @@ public GrpcServerConfigurer keepAliveServerConfigurer() {
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-client-spring-boot-starter</artifactId>
<version>2.5.0.RELEASE</version>
<version>2.5.1.RELEASE</version>
</dependency>
````

如果使用的 Gradle,添加如下依赖

````gradle
dependencies {
compile 'net.devh:grpc-client-spring-boot-starter:2.5.0.RELEASE'
compile 'net.devh:grpc-client-spring-boot-starter:2.5.1.RELEASE'
}
````

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ application

2.x.x.RELEASE supports Spring Boot 2.1+ & Spring Cloud Greenwich.

The latest version: ``2.5.0.RELEASE``
The latest version: ``2.5.1.RELEASE``

(Use `2.4.0.RELEASE` for Spring Boot 2.0.X & Spring Cloud Finchley).

Expand All @@ -53,15 +53,15 @@ To add a dependency using Maven, use the following:
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-spring-boot-starter</artifactId>
<version>2.5.0.RELEASE</version>
<version>2.5.1.RELEASE</version>
</dependency>
````

To add a dependency using Gradle:

````gradle
dependencies {
compile 'net.devh:grpc-spring-boot-starter:2.5.0.RELEASE'
compile 'net.devh:grpc-spring-boot-starter:2.5.1.RELEASE'
}
````

Expand All @@ -73,15 +73,15 @@ To add a dependency using Maven, use the following:
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-server-spring-boot-starter</artifactId>
<version>2.5.0.RELEASE</version>
<version>2.5.1.RELEASE</version>
</dependency>
````

To add a dependency using Gradle:

````gradle
dependencies {
compile 'net.devh:grpc-server-spring-boot-starter:2.5.0.RELEASE'
compile 'net.devh:grpc-server-spring-boot-starter:2.5.1.RELEASE'
}
````

Expand Down Expand Up @@ -252,15 +252,15 @@ To add a dependency using Maven, use the following:
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-client-spring-boot-starter</artifactId>
<version>2.5.0.RELEASE</version>
<version>2.5.1.RELEASE</version>
</dependency>
````

To add a dependency using Gradle:

````gradle
dependencies {
compile 'net.devh:grpc-client-spring-boot-starter:2.5.0.RELEASE'
compile 'net.devh:grpc-client-spring-boot-starter:2.5.1.RELEASE'
}
````

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
ext {
projectVersion = '2.5.1-SNAPSHOT'
projectVersion = '2.5.1.RELEASE'

grpcVersion = '1.22.2'
protobufVersion = '3.8.0'
Expand Down

0 comments on commit 56a8108

Please sign in to comment.