Skip to content

Commit ebdc5b7

Browse files
committed
发布 1.4.7
1 parent 329eca7 commit ebdc5b7

File tree

8 files changed

+46
-11
lines changed

8 files changed

+46
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Maven #
22
target/
3+
.flattened-pom.xml
34

45
# IDEA #
56
.idea/

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,17 @@ Add the following dependency to your pom.xml:
1616
<dependency>
1717
<groupId>com.github.pagehelper</groupId>
1818
<artifactId>pagehelper-spring-boot-starter</artifactId>
19-
<version>1.4.6</version>
19+
<version>1.4.7</version>
2020
</dependency>
2121
```
2222

23+
## v1.4.7 - 2023-06-03
24+
25+
- 升级 PageHelper 到 5.3.3
26+
- 升级 MyBatis 到 3.5.13
27+
- 升级 MyBatis Starter 到 2.3.1
28+
- 升级 springboot 到 2.7.12
29+
2330
## v1.4.6 - 2022-11-28
2431

2532
- 兼容 Spring Boot 3.0 by [pky920216344](https://github.com/pky920216344)

pagehelper-spring-boot-autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<parent>
3030
<groupId>com.github.pagehelper</groupId>
3131
<artifactId>pagehelper-spring-boot</artifactId>
32-
<version>1.4.6</version>
32+
<version>${revision}</version>
3333
</parent>
3434
<artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
3535
<name>pagehelper-spring-boot-autoconfigure</name>

pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>com.github.pagehelper</groupId>
3030
<artifactId>pagehelper-spring-boot-samples</artifactId>
31-
<version>1.4.6</version>
31+
<version>${revision}</version>
3232
</parent>
3333
<artifactId>pagehelper-spring-boot-sample-annotation</artifactId>
3434
<packaging>jar</packaging>

pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>com.github.pagehelper</groupId>
3030
<artifactId>pagehelper-spring-boot-samples</artifactId>
31-
<version>1.4.6</version>
31+
<version>${revision}</version>
3232
</parent>
3333
<artifactId>pagehelper-spring-boot-sample-xml</artifactId>
3434
<packaging>jar</packaging>

pagehelper-spring-boot-samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<parent>
3030
<groupId>com.github.pagehelper</groupId>
3131
<artifactId>pagehelper-spring-boot</artifactId>
32-
<version>1.4.6</version>
32+
<version>${revision}</version>
3333
</parent>
3434
<artifactId>pagehelper-spring-boot-samples</artifactId>
3535
<packaging>pom</packaging>

pagehelper-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<parent>
3030
<groupId>com.github.pagehelper</groupId>
3131
<artifactId>pagehelper-spring-boot</artifactId>
32-
<version>1.4.6</version>
32+
<version>${revision}</version>
3333
</parent>
3434
<artifactId>pagehelper-spring-boot-starter</artifactId>
3535
<name>pagehelper-spring-boot-starter</name>

pom.xml

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<groupId>com.github.pagehelper</groupId>
3131
<artifactId>pagehelper-spring-boot</artifactId>
32-
<version>1.4.6</version>
32+
<version>${revision}</version>
3333
<packaging>pom</packaging>
3434

3535
<name>pagehelper-spring-boot</name>
@@ -63,15 +63,17 @@
6363
</modules>
6464

6565
<properties>
66+
<revision>1.4.7</revision>
67+
6668
<maven.compiler.source>8</maven.compiler.source>
6769
<maven.compiler.target>8</maven.compiler.target>
6870
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6971
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
7072

71-
<mybatis.version>3.5.10</mybatis.version>
72-
<pagehelper.version>5.3.2</pagehelper.version>
73-
<mybatis-spring-boot.version>2.2.2</mybatis-spring-boot.version>
74-
<spring-boot.version>2.7.3</spring-boot.version>
73+
<mybatis.version>3.5.13</mybatis.version>
74+
<pagehelper.version>5.3.3</pagehelper.version>
75+
<mybatis-spring-boot.version>2.3.1</mybatis-spring-boot.version>
76+
<spring-boot.version>2.7.12</spring-boot.version>
7577
</properties>
7678

7779
<dependencyManagement>
@@ -202,6 +204,31 @@
202204
</execution>
203205
</executions>
204206
</plugin>
207+
<plugin>
208+
<groupId>org.codehaus.mojo</groupId>
209+
<artifactId>flatten-maven-plugin</artifactId>
210+
<version>1.1.0</version>
211+
<configuration>
212+
<updatePomFile>true</updatePomFile>
213+
<flattenMode>resolveCiFriendliesOnly</flattenMode>
214+
</configuration>
215+
<executions>
216+
<execution>
217+
<id>flatten</id>
218+
<phase>process-resources</phase>
219+
<goals>
220+
<goal>flatten</goal>
221+
</goals>
222+
</execution>
223+
<execution>
224+
<id>flatten.clean</id>
225+
<phase>clean</phase>
226+
<goals>
227+
<goal>clean</goal>
228+
</goals>
229+
</execution>
230+
</executions>
231+
</plugin>
205232
</plugins>
206233
</build>
207234

0 commit comments

Comments
 (0)