Skip to content

Commit 4fce941

Browse files
committed
release 4.7.0
1 parent 17cbe47 commit 4fce941

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

README.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ repositories {
3838
3939
}
4040
dependencies {
41-
compile 'io.github.lognet:grpc-spring-boot-starter:4.6.0'
41+
compile 'io.github.lognet:grpc-spring-boot-starter:4.7.0'
4242
}
4343
4444
@@ -48,7 +48,7 @@ By default, starter pulls `io.grpc:grpc-netty-shaded` as transitive dependency
4848

4949
[source,groovy]
5050
----
51-
compile ('io.github.lognet:grpc-spring-boot-starter:4.6.0') {
51+
compile ('io.github.lognet:grpc-spring-boot-starter:4.7.0') {
5252
exclude group: 'io.grpc', module: 'grpc-netty-shaded'
5353
}
5454
compile 'io.grpc:grpc-netty:1.43.2' // <1>
@@ -65,7 +65,7 @@ In this case you'll need to forcibly and explicitly set the `grpc` version to
6565
configurations.all {
6666
resolutionStrategy.eachDependency { details ->
6767
if ("io.grpc".equalsIgnoreCase(details.requested.group)) {
68-
details.useVersion "1.37.0"
68+
details.useVersion "1.45.1"
6969
}
7070
}
7171
}

ReleaseNotes.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
| Starter Version | gRPC versions | Spring Boot version
22
|-------------------------|:-------------:|:-------------------:|
3+
| [4.7.0](#version-470) | 1.45.1 | 2.6.6 |
34
| [4.6.0](#version-460) | 1.43.2 | 2.6.2 |
45
| [4.5.10](#version-4510) | 1.42.0 | 2.5.6 |
56
| [4.5.9](#version-459) | 1.41.0 | 2.5.6 |
@@ -30,6 +31,14 @@
3031
| [4.0.0](#version-400) | 1.32.1 | 2.3.3.RELEASE |
3132
| [3.5.7](#version-357) | 1.31.1 | 1.5.13.RELEASE |
3233

34+
# Version 4.7.0
35+
## :hammer: Dependency Upgrades
36+
37+
- Upgrade grpc to 1.45.1 [#294](https://github.com/LogNet/grpc-spring-boot-starter/issues/294)
38+
- Support Spring Boot 2.6.6 [#293](https://github.com/LogNet/grpc-spring-boot-starter/issues/293)
39+
- Upgrade grpc to 1.45.0 [#291](https://github.com/LogNet/grpc-spring-boot-starter/issues/291)
40+
- Add suport for spring boot 2.6.4 [#285](https://github.com/LogNet/grpc-spring-boot-starter/issues/285)
41+
3342
# Version 4.6.0
3443
## :star: New Features
3544

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ gradleErrorPronePluginVersion=2.0.2
55
errorProneVersion=2.7.1
66
lombokVersion=1.18.20
77

8-
version=4.7.0-SNAPSHOT
8+
version=4.7.0
99
group=io.github.lognet
1010
description=Spring Boot starter for Google RPC.
1111
gitHubUrl=https\://github.com/LogNet/grpc-spring-boot-starter

grpc-spring-boot-starter-gradle-plugin/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Bootstraps the project with `com.google.protobuf` gradle plugin (including `grp
2323
----
2424
plugins {
2525
id 'java'
26-
id "io.github.lognet.grpc-spring-boot" version '4.6.0'
26+
id "io.github.lognet.grpc-spring-boot" version '4.7.0'
2727
}
2828
2929
----

0 commit comments

Comments
 (0)