Skip to content

Commit

Permalink
Release 3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLiu1123 committed Mar 9, 2024
1 parent a275891 commit 56c766f
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ This project provides out-of-the-box, highly scalable Spring Boot starters for t
## Quick Start

```groovy
implementation(platform("io.github.danielliu1123:grpc-starter-dependencies:3.2.2"))
implementation(platform("io.github.danielliu1123:grpc-starter-dependencies:3.2.3"))
implementation("io.github.danielliu1123:grpc-boot-starter")
```

Expand Down Expand Up @@ -85,12 +85,12 @@ Mainly maintain the following versions:
is [main](https://github.com/DanielLiu1123/grpc-starter/).

3.x version is kept in sync with Spring Boot 3,
if you are using Spring Boot 3.2.x, then `grpc-boot-starter` 3.2.2 should be used.
if you are using Spring Boot 3.2.x, then `grpc-boot-starter` 3.2.3 should be used.

| Spring Boot | grpc-boot-starter |
|-------------|-------------------|
| 3.1.x | 3.1.8 |
| 3.2.x | 3.2.2 |
| 3.2.x | 3.2.3 |

- 2.x

Expand Down
4 changes: 2 additions & 2 deletions docs/en-us/guide/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#### **Gradle**

```groovy
implementation platform('com.freemanan:grpc-starter-dependencies:3.2.2')
implementation platform('com.freemanan:grpc-starter-dependencies:3.2.3')
implementation 'com.freemanan:grpc-boot-starter'
```

Expand All @@ -17,7 +17,7 @@ implementation 'com.freemanan:grpc-boot-starter'
<dependency>
<groupId>com.freemanan</groupId>
<artifactId>grpc-starter-dependencies</artifactId>
<version>3.2.2</version>
<version>3.2.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions docs/en-us/guide/version.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ Mainly maintain the following versions:
is [main](https://github.com/DanielLiu1123/grpc-starter/).

3.x version is kept in sync with Spring Boot 3,
if you are using Spring Boot 3.2.x, then `grpc-boot-starter` 3.2.2 should be used.
if you are using Spring Boot 3.2.x, then `grpc-boot-starter` 3.2.3 should be used.

| Spring Boot | grpc-boot-starter |
|-------------|-------------------|
| 3.1.x | 3.1.8 |
| 3.2.x | 3.2.2 |
| 3.2.x | 3.2.3 |

- 2.x

Expand Down
2 changes: 1 addition & 1 deletion docs/zh-cn/coverpage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![logo](assets/images/logo.png)

# gRPC Starter <small>3.2.2</small>
# gRPC Starter <small>3.2.3</small>

> Spring Boot Starters for gRPC ecosystem
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-cn/guide/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#### ** Gradle **

```groovy
implementation platform('com.freemanan:grpc-starter-dependencies:3.2.2')
implementation platform('com.freemanan:grpc-starter-dependencies:3.2.3')
implementation 'com.freemanan:grpc-boot-starter'
```

Expand All @@ -18,7 +18,7 @@ implementation 'com.freemanan:grpc-boot-starter'
<dependency>
<groupId>com.freemanan</groupId>
<artifactId>grpc-starter-dependencies</artifactId>
<version>3.2.2</version>
<version>3.2.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-cn/guide/version.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Spring Boot | grpc-boot-starter |
|-------------|-------------------|
| 3.1.x | 3.1.8 |
| 3.2.x | 3.2.2 |
| 3.2.x | 3.2.3 |

- 2.x

Expand Down
2 changes: 1 addition & 1 deletion examples/tracing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {

implementation("org.springframework.boot:spring-boot-starter-web")
implementation("io.micrometer:micrometer-tracing-bridge-brave")
implementation("io.github.danielliu1123:httpexchange-spring-boot-starter:3.2.2")
implementation("io.github.danielliu1123:httpexchange-spring-boot-starter:3.2.3")

testImplementation(project(":grpc-starters:grpc-starter-test"))
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=io.github.danielliu1123
artifact=grpc-starter
version=3.2.3-RC1-SNAPSHOT
version=3.2.3-SNAPSHOT

# Spring related
springBootVersion=3.2.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
public class Deps {

public static final String SPRING_BOOT_VERSION = "3.2.2";
public static final String SPRING_BOOT_VERSION = "3.2.3";

public static final String WEB_MVC_STARTER =
"org.springframework.boot:spring-boot-starter-web:" + SPRING_BOOT_VERSION;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ public final class Deps {

private Deps() {}

public static final String SPRING_BOOT_VERSION = "3.2.2";
public static final String SPRING_BOOT_VERSION = "3.2.3";
}

0 comments on commit 56c766f

Please sign in to comment.