Skip to content

Commit fcdc5af

Browse files
author
yichen.zhang
committed
Release 2.13.0
1 parent baca1c6 commit fcdc5af

File tree

4 files changed

+37
-36
lines changed

4 files changed

+37
-36
lines changed

README-zh-CN.md

+7-7
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.12.0.RELEASE`
40+
最新版本: `2.13.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.12.0.RELEASE</version>
60+
<version>2.13.0.RELEASE</version>
6161
</dependency>
6262
````
6363

6464
Gradle:
6565

6666
````gradle
6767
dependencies {
68-
compile 'net.devh:grpc-spring-boot-starter:2.12.0.RELEASE'
68+
compile 'net.devh:grpc-spring-boot-starter:2.13.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.12.0.RELEASE</version>
80+
<version>2.13.0.RELEASE</version>
8181
</dependency>
8282
````
8383

8484
Gradle:
8585

8686
````gradle
8787
dependencies {
88-
compile 'net.devh:grpc-server-spring-boot-starter:2.12.0.RELEASE'
88+
compile 'net.devh:grpc-server-spring-boot-starter:2.13.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.12.0.RELEASE</version>
120+
<version>2.13.0.RELEASE</version>
121121
</dependency>
122122
````
123123

124124
Gradle:
125125

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

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ README: [English](README.md) | [中文](README-zh-CN.md)
5050

5151
## Versions
5252

53-
The latest version is `2.12.0.RELEASE` it was compiled with spring-boot `2.4.5` and spring-cloud `2020.0.2`
53+
The latest version is `2.13.0.RELEASE` it was compiled with spring-boot `2.4.5` and spring-cloud `2020.0.2`
5454
but it is also compatible with a large variety of other versions.
5555
An overview of all versions and their respective library versions can be found in our [documentation](https://yidongnan.github.io/grpc-spring-boot-starter/en/versions.html).
5656

@@ -66,15 +66,15 @@ To add a dependency using Maven, use the following:
6666
<dependency>
6767
<groupId>net.devh</groupId>
6868
<artifactId>grpc-spring-boot-starter</artifactId>
69-
<version>2.12.0.RELEASE</version>
69+
<version>2.13.0.RELEASE</version>
7070
</dependency>
7171
````
7272

7373
To add a dependency using Gradle:
7474

7575
````gradle
7676
dependencies {
77-
implementation 'net.devh:grpc-spring-boot-starter:2.12.0.RELEASE'
77+
implementation 'net.devh:grpc-spring-boot-starter:2.13.0.RELEASE'
7878
}
7979
````
8080

@@ -86,15 +86,15 @@ To add a dependency using Maven, use the following:
8686
<dependency>
8787
<groupId>net.devh</groupId>
8888
<artifactId>grpc-server-spring-boot-starter</artifactId>
89-
<version>2.12.0.RELEASE</version>
89+
<version>2.13.0.RELEASE</version>
9090
</dependency>
9191
````
9292

9393
To add a dependency using Gradle:
9494

9595
````gradle
9696
dependencies {
97-
implementation 'net.devh:grpc-server-spring-boot-starter:2.12.0.RELEASE'
97+
implementation 'net.devh:grpc-server-spring-boot-starter:2.13.0.RELEASE'
9898
}
9999
````
100100

@@ -128,15 +128,15 @@ To add a dependency using Maven, use the following:
128128
<dependency>
129129
<groupId>net.devh</groupId>
130130
<artifactId>grpc-client-spring-boot-starter</artifactId>
131-
<version>2.12.0.RELEASE</version>
131+
<version>2.13.0.RELEASE</version>
132132
</dependency>
133133
````
134134

135135
To add a dependency using Gradle:
136136

137137
````gradle
138138
dependencies {
139-
compile 'net.devh:grpc-client-spring-boot-starter:2.12.0.RELEASE'
139+
compile 'net.devh:grpc-client-spring-boot-starter:2.13.0.RELEASE'
140140
}
141141
````
142142

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99
}
1010
ext {
11-
projectVersion = '2.13.0-SNAPSHOT'
11+
projectVersion = '2.13.0.RELEASE'
1212

1313
// https://github.com/grpc/grpc-java/releases
1414
grpcVersion = '1.42.1'

docs/zh-CN/versions.md

+22-21
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,28 @@
3636

3737
当前版本。
3838

39-
| 版本 | spring-boot | gRPC | 日期 |
40-
|:---------:|:-----------:|:------:| ----------:|
41-
| 2.12.0 | 2.4.5 | 1.34.1 | 2021年05月 |
42-
| 2.11.0 | 2.3.8 | 1.31.1 | 2021年02月 |
43-
| 2.10.1 | 2.3.3 | 1.31.1 | 2020年08月 |
44-
| 2.10.0 | 2.3.3 | 1.31.1 | 2020年08月 |
45-
| 2.9.0 | 2.3.0 | 1.30.0 | 2020年06月 |
46-
| 2.8.0 | 2.2.7 | 1.29.0 | 2020年06月 |
47-
| 2.7.0 | 2.2.4 | 1.27.1 | 2020年02月 |
48-
| 2.6.2 | 2.2.1 | 1.25.0 | 2020年01月 |
49-
| 2.6.1 | 2.2.1 | 1.25.0 | 2019年11月 |
50-
| 2.6.0 | 2.2.1 | 1.24.2 | 2019年11月 |
51-
| 2.5.1 | 2.1.6 | 1.22.2 | 2019年08月 |
52-
| 2.5.0 | 2.1.6 | 1.22.1 | 2019年08月 |
53-
| 2.4.0 | 2.1.5 | 1.20.0 | 2019年06月 |
54-
| 2.3.0 | 2.1.4 | 1.18.0 | 2019年04月 |
55-
| 2.2.1 | 2.0.7 | 1.17.1 | 2019年01月 |
56-
| 2.2.0 | 2.0.6 | 1.17.1 | 2018年12月 |
57-
| 2.1.0 | 2.0.? | 1.14.0 | 2018年10月 |
58-
| 2.0.1 | 2.0.? | 1.14.0 | 2018年08月 |
59-
| 2.0.0 | 2.0.? | 1.13.1 | 2018年08月 |
39+
| 版本 | spring-boot | spring-cloud | gRPC | 日期 |
40+
|:---------:|:-----------:|:-----------:|:------:| ----------:|
41+
| 2.13.0 | 2.5.7 | 2020.0.4 | 1.42.1 | 2021年11月 |
42+
| 2.12.0 | 2.4.5 | 2020.0.2 | 1.34.1 | 2021年05月 |
43+
| 2.11.0 | 2.3.8 | Hoxton | 1.31.1 | 2021年02月 |
44+
| 2.10.1 | 2.3.3 | Hoxton | 1.31.1 | 2020年08月 |
45+
| 2.10.0 | 2.3.3 | Hoxton | 1.31.1 | 2020年08月 |
46+
| 2.9.0 | 2.3.0 | Hoxton | 1.30.0 | 2020年06月 |
47+
| 2.8.0 | 2.2.7 | Hoxton | 1.29.0 | 2020年06月 |
48+
| 2.7.0 | 2.2.4 | Hoxton | 1.27.1 | 2020年02月 |
49+
| 2.6.2 | 2.2.1 | Hoxton | 1.25.0 | 2020年01月 |
50+
| 2.6.1 | 2.2.1 | Hoxton | 1.25.0 | 2019年11月 |
51+
| 2.6.0 | 2.2.1 | Hoxton | 1.24.2 | 2019年11月 |
52+
| 2.5.1 | 2.1.6 | Greenwich | 1.22.2 | 2019年08月 |
53+
| 2.5.0 | 2.1.6 | Greenwich | 1.22.1 | 2019年08月 |
54+
| 2.4.0 | 2.1.5 | Finchley | 1.20.0 | 2019年06月 |
55+
| 2.3.0 | 2.1.4 | Finchley | 1.18.0 | 2019年04月 |
56+
| 2.2.1 | 2.0.7 | ? |1.17.1 | 2019年01月 |
57+
| 2.2.0 | 2.0.6 | ? |1.17.1 | 2018年12月 |
58+
| 2.1.0 | 2.0.? | ? |1.14.0 | 2018年10月 |
59+
| 2.0.1 | 2.0.? | ? |1.14.0 | 2018年08月 |
60+
| 2.0.0 | 2.0.? | ? |1.13.1 | 2018年08月 |
6061

6162
(* 代表未来的版本)
6263

0 commit comments

Comments
 (0)