File tree Expand file tree Collapse file tree 4 files changed +50
-3
lines changed
grpc-client-spring-boot-starter Expand file tree Collapse file tree 4 files changed +50
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ repositories {
3434
3535}
3636dependencies {
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
Original file line number Diff line number Diff line change 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 |
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
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
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ grpcVersion=1.38.0
22springBootVersion =2.5.0
33springCloudVersion =2020.0.3
44
5- version =4.5.2-SNAPSHOT
5+ version =4.5.2
66group =io.github.lognet
77description =Spring Boot starter for Google RPC.
88gitHubUrl =https\://github.com/LogNet/grpc-spring-boot-starter
Original file line number Diff line number Diff line change @@ -116,4 +116,7 @@ dependencies {
116116}
117117compileJava. dependsOn(processResources)
118118
119-
119+ jar {
120+ enabled = true
121+ archiveClassifier. convention(" " )
122+ }
You can’t perform that action at this time.
0 commit comments