Skip to content

Commit 3765298

Browse files
committed
update 3.1.5
1 parent 3daf08e commit 3765298

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

example-application/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-example</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>3.1.3</version>
8+
<version>3.1.5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

example-domain/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-example</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>3.1.3</version>
8+
<version>3.1.5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

example-infrastructure-jpa/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-example</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>3.1.3</version>
8+
<version>3.1.5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

example-restapi/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-example</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>3.1.3</version>
8+
<version>3.1.5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>3.1.4</version>
15+
<version>3.1.5</version>
1616
<relativePath/> <!-- lookup parent from repository -->
1717
</parent>
1818

1919
<groupId>com.codingapi.springboot</groupId>
2020
<artifactId>springboot-example</artifactId>
21-
<version>3.1.3</version>
21+
<version>3.1.5</version>
2222

2323
<name>springboot-example</name>
2424
<description>springboot-example project for Spring Boot</description>

web/src/components/Footer/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const Footer: React.FC = () => {
1414
useEffect(() => {
1515
getVersion().then(res => {
1616
// @ts-ignore
17-
setVersion(res);
17+
setVersion(res.data);
1818
})
1919
}, []);
2020

0 commit comments

Comments
 (0)