Skip to content

Commit

Permalink
upgrade spring boot 3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLiu1123 committed Aug 25, 2023
1 parent a96dc6e commit 3160513
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class App {

@Bean
PostApi postApi(HttpServiceProxyFactory factory) {
return factory.createClient(UserClient.class);
return factory.createClient(PostApi.class);
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ group=com.freemanan
artifact=httpexchange-spring-boot-starter
version=3.1.3-SNAPSHOT

springBootVersion=3.1.2
springBootVersion=3.1.3
springCloudVersion=2022.0.4
spotlessVersion=6.20.0
spotbugsVersion=6.0.0-beta.3
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/freemanan/starter/Dependencies.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
* @author Freeman
*/
public class Dependencies {
public static final String springBootVersion = "3.1.2";
public static final String springBootVersion = "3.1.3";
}

0 comments on commit 3160513

Please sign in to comment.