Skip to content

Commit 2761677

Browse files
author
Alexander Furer
committed
release 4.5.2
1 parent 0e8222f commit 2761677

File tree

4 files changed

+50
-3
lines changed

4 files changed

+50
-3
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ repositories {
3434
3535
}
3636
dependencies {
37-
compile 'io.github.lognet:grpc-spring-boot-starter:4.5.1:plain'
37+
compile 'io.github.lognet:grpc-spring-boot-starter:4.5.2'
3838
}
3939
4040

ReleaseNotes.md

Lines changed: 44 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.5.2](#version-452)| 1.38.0 |2.5.0 |
34
| [4.5.1](#version-451)| 1.38.0 |2.5.0 |
45
| [4.5.0](#version-450)| 1.37.0 |2.4.5 |
56
| [4.4.7](#version-447)| 1.37.0 |2.4.5 |
@@ -23,6 +24,29 @@
2324

2425

2526

27+
# Version 4.5.2
28+
29+
## :beetle: Bug Fixes
30+
31+
- Can't download version `4.5.1` from maven central [#217](https://github.com/LogNet/grpc-spring-boot-starter/issues/217) - fixed by setting jar classifier to empty string :
32+
33+
* Gradle
34+
```
35+
dependencies {
36+
compile 'io.github.lognet:grpc-spring-boot-starter:4.5.2'
37+
}
38+
```
39+
40+
* Maven
41+
```
42+
<dependency>
43+
<groupId>io.github.lognet</groupId>
44+
<artifactId>grpc-spring-boot-starter</artifactId>
45+
<version>4.5.2</version>
46+
</dependency>
47+
```
48+
49+
2650
# Version 4.5.1
2751

2852
## :beetle: Bug Fixes
@@ -35,6 +59,26 @@
3559
- Upgrade Spring boot to 2.5.0 [#212](https://github.com/LogNet/grpc-spring-boot-starter/issues/212)
3660
- Upgrade grpc to 1.38.0 [#211](https://github.com/LogNet/grpc-spring-boot-starter/issues/211)
3761

62+
## :hammer_and_wrench: IMPORTANT!
63+
This release was incorrectly published to maven repository with `plain` jar classifier. For `4.5.1` only please use :
64+
65+
* Gradle
66+
```
67+
dependencies {
68+
compile 'io.github.lognet:grpc-spring-boot-starter:4.5.1:plain'
69+
}
70+
```
71+
72+
* Maven
73+
```
74+
<dependency>
75+
<groupId>io.github.lognet</groupId>
76+
<artifactId>grpc-spring-boot-starter</artifactId>
77+
<version>4.5.1</version>
78+
<classifier>plain</classifier>
79+
</dependency>
80+
```
81+
3882
# Version 4.5.0
3983

4084
## :beetle: Bug Fixes

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ grpcVersion=1.38.0
22
springBootVersion=2.5.0
33
springCloudVersion=2020.0.3
44

5-
version=4.5.2-SNAPSHOT
5+
version=4.5.2
66
group=io.github.lognet
77
description=Spring Boot starter for Google RPC.
88
gitHubUrl=https\://github.com/LogNet/grpc-spring-boot-starter

grpc-client-spring-boot-starter/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,7 @@ dependencies {
116116
}
117117
compileJava.dependsOn(processResources)
118118

119-
119+
jar {
120+
enabled = true
121+
archiveClassifier.convention("")
122+
}

0 commit comments

Comments
 (0)