Skip to content

Commit cb2c19f

Browse files
authored
Merge pull request #1056 from grpc-ecosystem/release_3.0.0
Release 3.0.0
2 parents 2c5e6c1 + 5d590b8 commit cb2c19f

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
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.15.0.RELEASE` 它能跟 Spring-Boot `2.7.16` 和 Spring-Cloud `2021.0.8` 搭配使用。 但它也与各种其他版本兼容。 我们的 [文档](https://yidongnan.github.io/grpc-spring-boot-starter/en/versions.html) 中可以找到所有版本及其相应的库版本的概览。
43+
最新版本是 `3.0.0.RELEASE` 它能跟 Spring-Boot `3.2.2` 和 Spring-Cloud `2023.0.0` 搭配使用。 但它也与各种其他版本兼容。 我们的 [文档](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.15.0.RELEASE</version>
57+
<version>3.0.0.RELEASE</version>
5858
</dependency>
5959
````
6060

6161
使用 Gradle 添加依赖:
6262

6363
````gradle
6464
dependencies {
65-
implementation 'net.devh:grpc-spring-boot-starter:2.15.0.RELEASE'
65+
implementation 'net.devh:grpc-spring-boot-starter:3.0.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.15.0.RELEASE</version>
77+
<version>3.0.0.RELEASE</version>
7878
</dependency>
7979
````
8080

8181
使用 Gradle 添加依赖项:
8282

8383
````gradle
8484
dependencies {
85-
implementation 'net.devh:grpc-server-spring-boot-starter:2.15.0.RELEASE'
85+
implementation 'net.devh:grpc-server-spring-boot-starter:3.0.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.15.0.RELEASE</version>
117+
<version>3.0.0.RELEASE</version>
118118
</dependency>
119119
````
120120

121121
使用 Gradle 添加依赖项:
122122

123123
````gradle
124124
dependencies {
125-
compile 'net.devh:grpc-client-spring-boot-starter:2.15.0.RELEASE'
125+
compile 'net.devh:grpc-client-spring-boot-starter:3.0.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.15.0.RELEASE` it was compiled with spring-boot `2.7.16` and spring-cloud `2021.0.8`
53+
The latest version is `3.0.0.RELEASE` it was compiled with spring-boot `3.2.2` and spring-cloud `2023.0.0`
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.15.0.RELEASE</version>
69+
<version>3.0.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.15.0.RELEASE'
77+
implementation 'net.devh:grpc-spring-boot-starter:3.0.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.15.0.RELEASE</version>
89+
<version>3.0.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.15.0.RELEASE'
97+
implementation 'net.devh:grpc-server-spring-boot-starter:3.0.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.15.0.RELEASE</version>
131+
<version>3.0.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.15.0.RELEASE'
139+
compile 'net.devh:grpc-client-spring-boot-starter:3.0.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 = '3.0.0-SNAPSHOT'
11+
projectVersion = '3.0.0.RELEASE'
1212

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

docs/en/versions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Current version.
4949

5050
| Version | spring-boot | spring-cloud | gRPC | Date |
5151
|:-------:|:-----------:|:------------:|:------:|----------:|
52-
| 3.0.0\* | 3.1.4 | 2022.0.4 | 1.58.0 | Nov, 2023 |
52+
| 3.0.0 | 3.2.2 | 2023.0.0 | 1.60.1 | Feb, 2024 |
5353

5454
(\* Future versions)
5555

docs/zh-CN/versions.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838

3939
当前版本。
4040

41-
| 版本 | spring-boot | spring-cloud | gRPC | 日期 |
42-
|:------:|:-----------:|:------------:|:------:|---------:|
43-
| 3.0.0* | 3.1.4 | 2022.0.4 | 1.58.0 | 2023年9月 |
41+
| 版本 | spring-boot | spring-cloud | gRPC | 日期 |
42+
|:-----:|:-----------:|:------------:|:------:|--------:|
43+
| 3.0.0 | 3.2.2 | 2023.0.0 | 1.60.1 | 2024年2月 |
4444

4545
(\* 未来的版本)
4646

0 commit comments

Comments
 (0)