Skip to content

Commit 7923825

Browse files
committed
release 2.15.0
1 parent 1a93782 commit 7923825

File tree

5 files changed

+65
-64
lines changed

5 files changed

+65
-64
lines changed

README-zh-CN.md

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

4141
## 版本
4242

43-
最新版本是 `2.13.1.RELEASE` 它能跟 Spring-Boot `2.5的。` 和 Spring-Cloud `2020.0.5` 搭配使用。 但它也与各种其他版本兼容。 我们的 [文档](https://yidongnan.github.io/grpc-spring-boot-starter/en/versions.html) 中可以找到所有版本及其相应的库版本的概览。
43+
最新版本是 `2.15.0.RELEASE` 它能跟 Spring-Boot `2.7.14` 和 Spring-Cloud `2021.0.8` 搭配使用。 但它也与各种其他版本兼容。 我们的 [文档](https://yidongnan.github.io/grpc-spring-boot-starter/en/versions.html) 中可以找到所有版本及其相应的库版本的概览。
4444

4545
**注意:** 该项目也可以在没有 Spring-Boot 的情况下使用,但是您需要手动配置一些 bean。
4646

@@ -54,15 +54,15 @@ README: [English](README.md) | [中文](README-zh-CN.md)
5454
<dependency>
5555
<groupId>net.devh</groupId>
5656
<artifactId>grpc-spring-boot-starter</artifactId>
57-
<version>2.13.1.RELEASE</version>
57+
<version>2.15.0.RELEASE</version>
5858
</dependency>
5959
````
6060

6161
使用 Gradle 添加依赖:
6262

6363
````gradle
6464
dependencies {
65-
implementation 'net.devh:grpc-spring-boot-starter:2.13.1.RELEASE'
65+
implementation 'net.devh:grpc-spring-boot-starter:2.15.0.RELEASE'
6666
}
6767
````
6868

@@ -74,15 +74,15 @@ dependencies {
7474
<dependency>
7575
<groupId>net.devh</groupId>
7676
<artifactId>grpc-server-spring-boot-starter</artifactId>
77-
<version>2.13.1.RELEASE</version>
77+
<version>2.15.0.RELEASE</version>
7878
</dependency>
7979
````
8080

8181
使用 Gradle 添加依赖项:
8282

8383
````gradle
8484
dependencies {
85-
implementation 'net.devh:grpc-server-spring-boot-starter:2.13.1.RELEASE'
85+
implementation 'net.devh:grpc-server-spring-boot-starter:2.15.0.RELEASE'
8686
}
8787
````
8888

@@ -114,15 +114,15 @@ public class GrpcServerService extends GreeterGrpc.GreeterImplBase {
114114
<dependency>
115115
<groupId>net.devh</groupId>
116116
<artifactId>grpc-client-spring-boot-starter</artifactId>
117-
<version>2.13.1.RELEASE</version>
117+
<version>2.15.0.RELEASE</version>
118118
</dependency>
119119
````
120120

121121
使用 Gradle 添加依赖项:
122122

123123
````gradle
124124
dependencies {
125-
compile 'net.devh:grpc-client-spring-boot-starter:2.13.1.RELEASE'
125+
compile 'net.devh:grpc-client-spring-boot-starter:2.15.0.RELEASE'
126126
}
127127
````
128128

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.14.0.RELEASE` it was compiled with spring-boot `2.6.13` and spring-cloud `2021.0.5`
53+
The latest version is `2.15.0.RELEASE` it was compiled with spring-boot `2.7.14` and spring-cloud `2021.0.8`
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.14.0.RELEASE</version>
69+
<version>2.15.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.14.0.RELEASE'
77+
implementation 'net.devh:grpc-spring-boot-starter:2.15.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.14.0.RELEASE</version>
89+
<version>2.15.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.14.0.RELEASE'
97+
implementation 'net.devh:grpc-server-spring-boot-starter:2.15.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.14.0.RELEASE</version>
131+
<version>2.15.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.14.0.RELEASE'
139+
compile 'net.devh:grpc-client-spring-boot-starter:2.15.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.15.0-SNAPSHOT'
11+
projectVersion = '2.15.0.RELEASE'
1212

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

docs/en/versions.md

+25-25
Original file line numberDiff line numberDiff line change
@@ -45,31 +45,31 @@ Please report any issues to our [repo](https://github.com/yidongnan/grpc-spring-
4545

4646
Current version.
4747

48-
| Version | spring-boot | spring-cloud | gRPC | Date |
49-
| :------: | :---------: | :----------: | :----: | --------: |
50-
| 2.15.0\* | 2.7.5 | 2021.0.5 | 1.51.0 | Nov, 2022 |
51-
| 2.14.0 | 2.6.13 | 2021.0.5 | 1.51.0 | Nov, 2022 |
52-
| 2.13.1 | 2.5.8 | 2020.0.5 | 1.42.2 | Jan, 2022 |
53-
| 2.13.0 | 2.5.7 | 2020.0.4 | 1.42.1 | Nov, 2021 |
54-
| 2.12.0 | 2.4.5 | 2020.0.2 | 1.37.0 | Mai, 2021 |
55-
| 2.11.0 | 2.3.8 | Hoxton | 1.35.0 | Feb, 2021 |
56-
| 2.10.1 | 2.3.3 | Hoxton | 1.31.1 | Aug, 2020 |
57-
| 2.10.0 | 2.3.3 | Hoxton | 1.31.1 | Aug, 2020 |
58-
| 2.9.0 | 2.3.1 | Hoxton | 1.30.0 | Jun, 2020 |
59-
| 2.8.0 | 2.2.7 | Hoxton | 1.29.0 | Jun, 2020 |
60-
| 2.7.0 | 2.2.4 | Hoxton | 1.27.1 | Feb, 2020 |
61-
| 2.6.2 | 2.2.1 | Hoxton | 1.25.0 | Jan, 2020 |
62-
| 2.6.1 | 2.2.1 | Hoxton | 1.25.0 | Nov, 2019 |
63-
| 2.6.0 | 2.2.1 | Hoxton | 1.24.2 | Nov, 2019 |
64-
| 2.5.1 | 2.1.6 | Greenwich | 1.22.2 | Aug, 2019 |
65-
| 2.5.0 | 2.1.6 | Greenwich | 1.22.1 | Aug, 2019 |
66-
| 2.4.0 | 2.1.5 | Finchley | 1.20.0 | Jun, 2019 |
67-
| 2.3.0 | 2.1.4 | Finchley | 1.18.0 | Apr, 2019 |
68-
| 2.2.1 | 2.0.7 | ? | 1.17.1 | Jan, 2019 |
69-
| 2.2.0 | 2.0.6 | ? | 1.17.1 | Dec, 2018 |
70-
| 2.1.0 | 2.0.? | ? | 1.14.0 | Oct, 2018 |
71-
| 2.0.1 | 2.0.? | ? | 1.14.0 | Aug, 2018 |
72-
| 2.0.0 | 2.0.? | ? | 1.13.1 | Aug, 2018 |
48+
| Version | spring-boot | spring-cloud | gRPC | Date |
49+
|:-------:|:-----------:| :----------: |:------:|----------:|
50+
| 2.15.0 | 2.7.14 | 2021.0.8 | 1.58.0 | Sep, 2023 |
51+
| 2.14.0 | 2.6.13 | 2021.0.5 | 1.51.0 | Nov, 2022 |
52+
| 2.13.1 | 2.5.8 | 2020.0.5 | 1.42.2 | Jan, 2022 |
53+
| 2.13.0 | 2.5.7 | 2020.0.4 | 1.42.1 | Nov, 2021 |
54+
| 2.12.0 | 2.4.5 | 2020.0.2 | 1.37.0 | Mai, 2021 |
55+
| 2.11.0 | 2.3.8 | Hoxton | 1.35.0 | Feb, 2021 |
56+
| 2.10.1 | 2.3.3 | Hoxton | 1.31.1 | Aug, 2020 |
57+
| 2.10.0 | 2.3.3 | Hoxton | 1.31.1 | Aug, 2020 |
58+
| 2.9.0 | 2.3.1 | Hoxton | 1.30.0 | Jun, 2020 |
59+
| 2.8.0 | 2.2.7 | Hoxton | 1.29.0 | Jun, 2020 |
60+
| 2.7.0 | 2.2.4 | Hoxton | 1.27.1 | Feb, 2020 |
61+
| 2.6.2 | 2.2.1 | Hoxton | 1.25.0 | Jan, 2020 |
62+
| 2.6.1 | 2.2.1 | Hoxton | 1.25.0 | Nov, 2019 |
63+
| 2.6.0 | 2.2.1 | Hoxton | 1.24.2 | Nov, 2019 |
64+
| 2.5.1 | 2.1.6 | Greenwich | 1.22.2 | Aug, 2019 |
65+
| 2.5.0 | 2.1.6 | Greenwich | 1.22.1 | Aug, 2019 |
66+
| 2.4.0 | 2.1.5 | Finchley | 1.20.0 | Jun, 2019 |
67+
| 2.3.0 | 2.1.4 | Finchley | 1.18.0 | Apr, 2019 |
68+
| 2.2.1 | 2.0.7 | ? | 1.17.1 | Jan, 2019 |
69+
| 2.2.0 | 2.0.6 | ? | 1.17.1 | Dec, 2018 |
70+
| 2.1.0 | 2.0.? | ? | 1.14.0 | Oct, 2018 |
71+
| 2.0.1 | 2.0.? | ? | 1.14.0 | Aug, 2018 |
72+
| 2.0.0 | 2.0.? | ? | 1.13.1 | Aug, 2018 |
7373

7474
(\* Future versions)
7575

docs/zh-CN/versions.md

+25-24
Original file line numberDiff line numberDiff line change
@@ -36,30 +36,31 @@
3636

3737
当前版本。
3838

39-
| 版本 | spring-boot | spring-cloud | gRPC | 日期 |
40-
|:----------:|:-----------:|:------------:|:------:| --------:|
41-
| 2.14.0\* | 2.6.11 | 2021.0.3 | 1.49.0 | 待定 |
42-
| 2.13.1 | 2.5.8 | 2020.0.5 | 1.42.2 | 2022年1月 |
43-
| 2.13.0 | 2.5.7 | 2020.0.4 | 1.42.1 | 2021年11月 |
44-
| 2.12.0 | 2.4.5 | 2020.0.2 | 1.37.0 | 2021年5月 |
45-
| 2.11.0 | 2.3.8 | Hoxton | 1.35.0 | 2021年2月 |
46-
| 2.10.1 | 2.3.3 | Hoxton | 1.31.1 | 2020年8月 |
47-
| 2.10.0 | 2.3.3 | Hoxton | 1.31.1 | 2020年8月 |
48-
| 2.9.0 | 2.3.1 | Hoxton | 1.30.0 | 2020年6月 |
49-
| 2.8.0 | 2.2.7 | Hoxton | 1.29.0 | 2020年6月 |
50-
| 2.7.0 | 2.2.4 | Hoxton | 1.27.1 | 2020年2月 |
51-
| 2.6.2 | 2.2.1 | Hoxton | 1.25.0 | 2020年1月 |
52-
| 2.6.1 | 2.2.1 | Hoxton | 1.25.0 | 2019年11月 |
53-
| 2.6.0 | 2.2.1 | Hoxton | 1.24.2 | 2019年11月 |
54-
| 2.5.1 | 2.1.6 | Greenwich | 1.22.2 | 2018年8月 |
55-
| 2.5.0 | 2.1.6 | Greenwich | 1.22.1 | 2018年8月 |
56-
| 2.4.0 | 2.1.5 | Finchley | 1.20.0 | 2019年6月 |
57-
| 2.3.0 | 2.1.4 | Finchley | 1.18.0 | 2019年4月 |
58-
| 2.2.1 | 2.0.7 | ? | 1.17.1 | 2019年1月 |
59-
| 2.2.0 | 2.0.6 | ? | 1.17.1 | 2018年12月 |
60-
| 2.1.0 | 2.0.? | ? | 1.14.0 | 2018年10月 |
61-
| 2.0.1 | 2.0.? | ? | 1.14.0 | 2018年8月 |
62-
| 2.0.0 | 2.0.? | ? | 1.13.1 | 2018年8月 |
39+
| 版本 | spring-boot | spring-cloud | gRPC | 日期 |
40+
|:------:|:-----------:|:------------:|:------:|---------:|
41+
| 2.15.0 | 2.7.14 | 2021.0.8 | 1.58.0 | 2023年9月 |
42+
| 2.14.0 | 2.6.13 | 2021.0.5 | 1.51.0 | 2022年11月 |
43+
| 2.13.1 | 2.5.8 | 2020.0.5 | 1.42.2 | 2022年1月 |
44+
| 2.13.0 | 2.5.7 | 2020.0.4 | 1.42.1 | 2021年11月 |
45+
| 2.12.0 | 2.4.5 | 2020.0.2 | 1.37.0 | 2021年5月 |
46+
| 2.11.0 | 2.3.8 | Hoxton | 1.35.0 | 2021年2月 |
47+
| 2.10.1 | 2.3.3 | Hoxton | 1.31.1 | 2020年8月 |
48+
| 2.10.0 | 2.3.3 | Hoxton | 1.31.1 | 2020年8月 |
49+
| 2.9.0 | 2.3.1 | Hoxton | 1.30.0 | 2020年6月 |
50+
| 2.8.0 | 2.2.7 | Hoxton | 1.29.0 | 2020年6月 |
51+
| 2.7.0 | 2.2.4 | Hoxton | 1.27.1 | 2020年2月 |
52+
| 2.6.2 | 2.2.1 | Hoxton | 1.25.0 | 2020年1月 |
53+
| 2.6.1 | 2.2.1 | Hoxton | 1.25.0 | 2019年11月 |
54+
| 2.6.0 | 2.2.1 | Hoxton | 1.24.2 | 2019年11月 |
55+
| 2.5.1 | 2.1.6 | Greenwich | 1.22.2 | 2018年8月 |
56+
| 2.5.0 | 2.1.6 | Greenwich | 1.22.1 | 2018年8月 |
57+
| 2.4.0 | 2.1.5 | Finchley | 1.20.0 | 2019年6月 |
58+
| 2.3.0 | 2.1.4 | Finchley | 1.18.0 | 2019年4月 |
59+
| 2.2.1 | 2.0.7 | ? | 1.17.1 | 2019年1月 |
60+
| 2.2.0 | 2.0.6 | ? | 1.17.1 | 2018年12月 |
61+
| 2.1.0 | 2.0.? | ? | 1.14.0 | 2018年10月 |
62+
| 2.0.1 | 2.0.? | ? | 1.14.0 | 2018年8月 |
63+
| 2.0.0 | 2.0.? | ? | 1.13.1 | 2018年8月 |
6364

6465
(\* 未来的版本)
6566

0 commit comments

Comments
 (0)