Skip to content

Commit 39be94d

Browse files
committed
Release 2.9.0
1 parent 1ae669f commit 39be94d

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

README-zh-CN.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ QQ交流群:294712648
3737

3838
2.x.x.RELEASE 支持 Spring Boot 2.1.x/2.2.x 和 Spring Cloud Greenwich / Hoxton。
3939

40-
最新版本: `2.8.0.RELEASE`
40+
最新版本: `2.9.0.RELEASE`
4141

4242
( `2.4.0.RELEASE` 用于 Spring Boot 2.0.x & Spring Cloud Finchy).
4343

@@ -57,15 +57,15 @@ QQ交流群:294712648
5757
<dependency>
5858
<groupId>net.devh</groupId>
5959
<artifactId>grpc-spring-boot-starter</artifactId>
60-
<version>2.8.0.RELEASE</version>
60+
<version>2.9.0.RELEASE</version>
6161
</dependency>
6262
````
6363

6464
Gradle:
6565

6666
````gradle
6767
dependencies {
68-
compile 'net.devh:grpc-spring-boot-starter:2.8.0.RELEASE'
68+
compile 'net.devh:grpc-spring-boot-starter:2.9.0.RELEASE'
6969
}
7070
````
7171

@@ -77,15 +77,15 @@ dependencies {
7777
<dependency>
7878
<groupId>net.devh</groupId>
7979
<artifactId>grpc-server-spring-boot-starter</artifactId>
80-
<version>2.8.0.RELEASE</version>
80+
<version>2.9.0.RELEASE</version>
8181
</dependency>
8282
````
8383

8484
Gradle:
8585

8686
````gradle
8787
dependencies {
88-
compile 'net.devh:grpc-server-spring-boot-starter:2.8.0.RELEASE'
88+
compile 'net.devh:grpc-server-spring-boot-starter:2.9.0.RELEASE'
8989
}
9090
````
9191

@@ -117,15 +117,15 @@ public class GrpcServerService extends GreeterGrpc.GreeterImplBase {
117117
<dependency>
118118
<groupId>net.devh</groupId>
119119
<artifactId>grpc-client-spring-boot-starter</artifactId>
120-
<version>2.8.0.RELEASE</version>
120+
<version>2.9.0.RELEASE</version>
121121
</dependency>
122122
````
123123

124124
Gradle:
125125

126126
````gradle
127127
dependencies {
128-
compile 'net.devh:grpc-client-spring-boot-starter:2.8.0.RELEASE'
128+
compile 'net.devh:grpc-client-spring-boot-starter:2.9.0.RELEASE'
129129
}
130130
````
131131
在 grpc 客户端的的 stub 字段上添加 `@GrpcClient(serverName)` 注解。

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ application
3636

3737
2.x.x.RELEASE supports Spring Boot 2.1.x/2.2.x & Spring Cloud Greenwich/Hoxton.
3838

39-
The latest version: ``2.8.0.RELEASE``
39+
The latest version: ``2.9.0.RELEASE``
4040

4141
(Use `2.4.0.RELEASE` for Spring Boot 2.0.x & Spring Cloud Finchley).
4242

@@ -56,15 +56,15 @@ To add a dependency using Maven, use the following:
5656
<dependency>
5757
<groupId>net.devh</groupId>
5858
<artifactId>grpc-spring-boot-starter</artifactId>
59-
<version>2.8.0.RELEASE</version>
59+
<version>2.9.0.RELEASE</version>
6060
</dependency>
6161
````
6262

6363
To add a dependency using Gradle:
6464

6565
````gradle
6666
dependencies {
67-
implementation 'net.devh:grpc-spring-boot-starter:2.8.0.RELEASE'
67+
implementation 'net.devh:grpc-spring-boot-starter:2.9.0.RELEASE'
6868
}
6969
````
7070

@@ -76,15 +76,15 @@ To add a dependency using Maven, use the following:
7676
<dependency>
7777
<groupId>net.devh</groupId>
7878
<artifactId>grpc-server-spring-boot-starter</artifactId>
79-
<version>2.8.0.RELEASE</version>
79+
<version>2.9.0.RELEASE</version>
8080
</dependency>
8181
````
8282

8383
To add a dependency using Gradle:
8484

8585
````gradle
8686
dependencies {
87-
implementation 'net.devh:grpc-server-spring-boot-starter:2.8.0.RELEASE'
87+
implementation 'net.devh:grpc-server-spring-boot-starter:2.9.0.RELEASE'
8888
}
8989
````
9090

@@ -118,15 +118,15 @@ To add a dependency using Maven, use the following:
118118
<dependency>
119119
<groupId>net.devh</groupId>
120120
<artifactId>grpc-client-spring-boot-starter</artifactId>
121-
<version>2.8.0.RELEASE</version>
121+
<version>2.9.0.RELEASE</version>
122122
</dependency>
123123
````
124124

125125
To add a dependency using Gradle:
126126

127127
````gradle
128128
dependencies {
129-
compile 'net.devh:grpc-client-spring-boot-starter:2.8.0.RELEASE'
129+
compile 'net.devh:grpc-client-spring-boot-starter:2.9.0.RELEASE'
130130
}
131131
````
132132
Annotate a field of your grpc client stub with `@GrpcClient(serverName)`

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010
}
1111
ext {
12-
projectVersion = '2.9.0-SNAPSHOT'
12+
projectVersion = '2.9.0.RELEASE'
1313

1414
// https://github.com/grpc/grpc-java/releases
1515
grpcVersion = '1.30.0'

docs/en/versions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Current version.
4848
| Version | spring-boot | gRPC | Date |
4949
|:-------:|:-----------:|:----:| ---: |
5050
| 2.10.0* | 2.3.1 | 1.30.0 | TBA |
51-
| 2.9.0* | 2.3.1 | 1.30.0 | Jun, 2020 |
51+
| 2.9.0 | 2.3.1 | 1.30.0 | Jun, 2020 |
5252
| 2.8.0 | 2.2.7 | 1.29.0 | Jun, 2020 |
5353
| 2.7.0 | 2.2.4 | 1.27.1 | Feb, 2020 |
5454
| 2.6.2 | 2.2.1 | 1.25.0 | Jan, 2020 |

docs/zh-CN/versions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838

3939
| 版本 | spring-boot | gRPC | 日期 |
4040
|:-------:|:-----------:|:------:| --------:|
41-
| 2.10.0* | 2.3.0 | 1.29.0 | 待定 |
42-
| 2.9.0* | 2.3.0 | 1.29.0 | 待定 |
41+
| 2.10.0*| 2.3.0 | 1.29.0 | 待定 |
42+
| 2.9.0 | 2.3.0 | 1.29.0 | 2020年06月 |
4343
| 2.8.0 | 2.2.7 | 1.29.0 | 2020年06月 |
4444
| 2.7.0 | 2.2.4 | 1.27.1 | 2020年02月 |
4545
| 2.6.2 | 2.2.1 | 1.25.0 | 2020年01月 |

0 commit comments

Comments
 (0)