Skip to content

Commit 7e6bc37

Browse files
authored
Merge pull request #1089 from grpc-ecosystem/release_3.1.0
Release 3.1.0
2 parents 20ab1ef + bebd1fd commit 7e6bc37

File tree

5 files changed

+21
-19
lines changed

5 files changed

+21
-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-
最新版本是 `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) 中可以找到所有版本及其相应的库版本的概览。
43+
最新版本是 `3.1.0.RELEASE` 它能跟 Spring-Boot `3.2.4` 和 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>3.0.0.RELEASE</version>
57+
<version>3.1.0.RELEASE</version>
5858
</dependency>
5959
````
6060

6161
使用 Gradle 添加依赖:
6262

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

8181
使用 Gradle 添加依赖项:
8282

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

121121
使用 Gradle 添加依赖项:
122122

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

README.md

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

5757
## Versions
5858

59-
The latest version is `3.0.0.RELEASE` it was compiled with spring-boot `3.2.2` and spring-cloud `2023.0.0`
59+
The latest version is `3.1.0.RELEASE` it was compiled with spring-boot `3.2.4` and spring-cloud `2023.0.0`
6060
but it is also compatible with a large variety of other versions.
6161
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).
6262

@@ -72,15 +72,15 @@ To add a dependency using Maven, use the following:
7272
<dependency>
7373
<groupId>net.devh</groupId>
7474
<artifactId>grpc-spring-boot-starter</artifactId>
75-
<version>3.0.0.RELEASE</version>
75+
<version>3.1.0.RELEASE</version>
7676
</dependency>
7777
````
7878

7979
To add a dependency using Gradle:
8080

8181
````gradle
8282
dependencies {
83-
implementation 'net.devh:grpc-spring-boot-starter:3.0.0.RELEASE'
83+
implementation 'net.devh:grpc-spring-boot-starter:3.1.0.RELEASE'
8484
}
8585
````
8686

@@ -92,15 +92,15 @@ To add a dependency using Maven, use the following:
9292
<dependency>
9393
<groupId>net.devh</groupId>
9494
<artifactId>grpc-server-spring-boot-starter</artifactId>
95-
<version>3.0.0.RELEASE</version>
95+
<version>3.1.0.RELEASE</version>
9696
</dependency>
9797
````
9898

9999
To add a dependency using Gradle:
100100

101101
````gradle
102102
dependencies {
103-
implementation 'net.devh:grpc-server-spring-boot-starter:3.0.0.RELEASE'
103+
implementation 'net.devh:grpc-server-spring-boot-starter:3.1.0.RELEASE'
104104
}
105105
````
106106

@@ -134,15 +134,15 @@ To add a dependency using Maven, use the following:
134134
<dependency>
135135
<groupId>net.devh</groupId>
136136
<artifactId>grpc-client-spring-boot-starter</artifactId>
137-
<version>3.0.0.RELEASE</version>
137+
<version>3.1.0.RELEASE</version>
138138
</dependency>
139139
````
140140

141141
To add a dependency using Gradle:
142142

143143
````gradle
144144
dependencies {
145-
compile 'net.devh:grpc-client-spring-boot-starter:3.0.0.RELEASE'
145+
compile 'net.devh:grpc-client-spring-boot-starter:3.1.0.RELEASE'
146146
}
147147
````
148148

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.RELEASE'
11+
projectVersion = '3.1.0.RELEASE'
1212

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

docs/en/versions.md

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

5050
| Version | spring-boot | spring-cloud | gRPC | Date |
5151
|:-------:|:-----------:|:------------:|:------:|----------:|
52-
| 3.0.0 | 3.2.2 | 2023.0.0 | 1.60.1 | Feb, 2024 |
52+
| 3.1.0 | 3.2.4 | 2023.0.0 | 1.63.0 | Apr, 2024 |
53+
| 3.0.0 | 3.2.2 | 2023.0.0 | 1.60.1 | Feb, 2024 |
5354

5455
(\* Future versions)
5556

docs/zh-CN/versions.md

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

3939
当前版本。
4040

41-
| 版本 | spring-boot | spring-cloud | gRPC | 日期 |
42-
|:-----:|:-----------:|:------------:|:------:|--------:|
43-
| 3.0.0 | 3.2.2 | 2023.0.0 | 1.60.1 | 2024年2月 |
41+
| 版本 | spring-boot | spring-cloud | gRPC | 日期 |
42+
|:-----:|:-----------:|:------------:|:-------:|--------:|
43+
| 3.1.0 | 3.2.4 | 2023.0.0 | 1.63.0 | 2024年4月 |
44+
| 3.0.0 | 3.2.2 | 2023.0.0 | 1.60.1 | 2024年2月 |
4445

4546
(\* 未来的版本)
4647

0 commit comments

Comments
 (0)