Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.1.0 #1089

Merged
merged 1 commit into from
Apr 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions README-zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ README: [English](README.md) | [中文](README-zh-CN.md)

## 版本

最新版本是 `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) 中可以找到所有版本及其相应的库版本的概览。
最新版本是 `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) 中可以找到所有版本及其相应的库版本的概览。

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

Expand All @@ -54,15 +54,15 @@ README: [English](README.md) | [中文](README-zh-CN.md)
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-spring-boot-starter</artifactId>
<version>3.0.0.RELEASE</version>
<version>3.1.0.RELEASE</version>
</dependency>
````

使用 Gradle 添加依赖:

````gradle
dependencies {
implementation 'net.devh:grpc-spring-boot-starter:3.0.0.RELEASE'
implementation 'net.devh:grpc-spring-boot-starter:3.1.0.RELEASE'
}
````

Expand All @@ -74,15 +74,15 @@ dependencies {
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-server-spring-boot-starter</artifactId>
<version>3.0.0.RELEASE</version>
<version>3.1.0.RELEASE</version>
</dependency>
````

使用 Gradle 添加依赖项:

````gradle
dependencies {
implementation 'net.devh:grpc-server-spring-boot-starter:3.0.0.RELEASE'
implementation 'net.devh:grpc-server-spring-boot-starter:3.1.0.RELEASE'
}
````

Expand Down Expand Up @@ -114,15 +114,15 @@ public class GrpcServerService extends GreeterGrpc.GreeterImplBase {
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-client-spring-boot-starter</artifactId>
<version>3.0.0.RELEASE</version>
<version>3.1.0.RELEASE</version>
</dependency>
````

使用 Gradle 添加依赖项:

````gradle
dependencies {
compile 'net.devh:grpc-client-spring-boot-starter:3.0.0.RELEASE'
compile 'net.devh:grpc-client-spring-boot-starter:3.1.0.RELEASE'
}
````

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ README: [English](README.md) | [中文](README-zh-CN.md)

## Versions

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

Expand All @@ -72,15 +72,15 @@ To add a dependency using Maven, use the following:
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-spring-boot-starter</artifactId>
<version>3.0.0.RELEASE</version>
<version>3.1.0.RELEASE</version>
</dependency>
````

To add a dependency using Gradle:

````gradle
dependencies {
implementation 'net.devh:grpc-spring-boot-starter:3.0.0.RELEASE'
implementation 'net.devh:grpc-spring-boot-starter:3.1.0.RELEASE'
}
````

Expand All @@ -92,15 +92,15 @@ To add a dependency using Maven, use the following:
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-server-spring-boot-starter</artifactId>
<version>3.0.0.RELEASE</version>
<version>3.1.0.RELEASE</version>
</dependency>
````

To add a dependency using Gradle:

````gradle
dependencies {
implementation 'net.devh:grpc-server-spring-boot-starter:3.0.0.RELEASE'
implementation 'net.devh:grpc-server-spring-boot-starter:3.1.0.RELEASE'
}
````

Expand Down Expand Up @@ -134,15 +134,15 @@ To add a dependency using Maven, use the following:
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-client-spring-boot-starter</artifactId>
<version>3.0.0.RELEASE</version>
<version>3.1.0.RELEASE</version>
</dependency>
````

To add a dependency using Gradle:

````gradle
dependencies {
compile 'net.devh:grpc-client-spring-boot-starter:3.0.0.RELEASE'
compile 'net.devh:grpc-client-spring-boot-starter:3.1.0.RELEASE'
}
````

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}
}
ext {
projectVersion = '3.0.0.RELEASE'
projectVersion = '3.1.0.RELEASE'

// https://github.com/grpc/grpc-java/releases
grpcVersion = '1.63.0'
Expand Down
3 changes: 2 additions & 1 deletion docs/en/versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ Current version.

| Version | spring-boot | spring-cloud | gRPC | Date |
|:-------:|:-----------:|:------------:|:------:|----------:|
| 3.0.0 | 3.2.2 | 2023.0.0 | 1.60.1 | Feb, 2024 |
| 3.1.0 | 3.2.4 | 2023.0.0 | 1.63.0 | Apr, 2024 |
| 3.0.0 | 3.2.2 | 2023.0.0 | 1.60.1 | Feb, 2024 |

(\* Future versions)

Expand Down
7 changes: 4 additions & 3 deletions docs/zh-CN/versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@

当前版本。

| 版本 | spring-boot | spring-cloud | gRPC | 日期 |
|:-----:|:-----------:|:------------:|:------:|--------:|
| 3.0.0 | 3.2.2 | 2023.0.0 | 1.60.1 | 2024年2月 |
| 版本 | spring-boot | spring-cloud | gRPC | 日期 |
|:-----:|:-----------:|:------------:|:-------:|--------:|
| 3.1.0 | 3.2.4 | 2023.0.0 | 1.63.0 | 2024年4月 |
| 3.0.0 | 3.2.2 | 2023.0.0 | 1.60.1 | 2024年2月 |

(\* 未来的版本)

Expand Down