Skip to content

Commit

Permalink
3.1.4 is coming
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLiu1123 committed Aug 27, 2023
1 parent ca88915 commit 229e525
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ capabilities.
1. Add dependencies

```groovy
implementation(platform("com.freemanan:grpc-starter-dependencies:3.1.2"))
implementation(platform("com.freemanan:grpc-starter-dependencies:3.1.3"))
implementation("com.freemanan:grpc-boot-starter")
// use gRPC simple proto for the example
Expand Down Expand Up @@ -104,7 +104,7 @@ Mainly maintain the following versions:

| Spring Boot | grpc-boot-starter |
|-------------|-------------------|
| 3.x | 3.1.2 |
| 3.x | 3.1.3 |

- 2.x

Expand All @@ -113,7 +113,7 @@ Mainly maintain the following versions:

| Spring Boot | grpc-boot-starter |
|-------------|-------------------|
| 2.x | 2.1.1 |
| 2.x | 2.1.3 |

## License

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.1.2')
implementation platform('com.freemanan:grpc-starter-dependencies:3.1.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.1.2</version>
<version>3.1.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 @@ The project maintains the following versions:

| Spring Boot | grpc-boot-starter |
|-------------|-------------------|
| 3.x | 3.1.2 |
| 3.x | 3.1.3 |

- 2.x

Based on Spring Boot 2, with a JDK 8 baseline. The corresponding branch is [2.x](https://github.com/DanielLiu1123/grpc-starter/tree/2.x). If you are using Spring Boot 2.x, you must use the 2.x version.

| Spring Boot | grpc-boot-starter |
|-------------|-------------------|
| 2.x | 2.1.1 |
| 2.x | 2.1.3 |
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.1.2</small>
# gRPC Starter <small>3.1.3</small>

> Spring Boot Starter 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.1.2')
implementation platform('com.freemanan:grpc-starter-dependencies:3.1.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.1.2</version>
<version>3.1.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-cn/guide/version.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

| Spring Boot | grpc-boot-starter |
|-------------|-------------------|
| 3.x | 3.1.2 |
| 3.x | 3.1.3 |

- 2.x

基于 Spring Boot 2,baseline 为 JDK 8,对应分支为 [2.x](https://github.com/DanielLiu1123/grpc-starter/tree/2.x),如果 Spring Boot 版本为 2.x,必须使用 2.x 版本。

| Spring Boot | grpc-boot-starter |
|-------------|-------------------|
| 2.x | 2.1.1 |
| 2.x | 2.1.3 |
2 changes: 1 addition & 1 deletion examples/tracing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("io.micrometer:micrometer-tracing-bridge-brave")
implementation("com.freemanan:httpexchange-spring-boot-starter:3.1.2")
implementation("com.freemanan:httpexchange-spring-boot-starter:3.1.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=com.freemanan
artifact=grpc-starter
version=3.1.3-SNAPSHOT
version=3.1.4-SNAPSHOT

# Spring related
springBootVersion=3.1.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.1.2";
public static final String SPRING_BOOT_VERSION = "3.1.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.1.2";
public static final String SPRING_BOOT_VERSION = "3.1.3";
}

0 comments on commit 229e525

Please sign in to comment.