Skip to content

Commit

Permalink
2.7.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fengwenyi committed Mar 20, 2024
1 parent 5f74fea commit 0d5490f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 版本更新日志

## v2.7.5
## v2.7.5 (2024-03-20)

:bug: Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.fengwenyi</groupId>
<artifactId>api-result</artifactId>
<version>2.7.4</version>
<version>2.7.5</version>
</dependency>
```

Expand Down
11 changes: 10 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.fengwenyi</groupId>
<artifactId>api-result</artifactId>
<version>2.7.5-SNAPSHOT</version>
<version>2.7.5</version>
<packaging>jar</packaging>
<name>api-result</name>
<description>一套RESTful风格API接口响应参数规范化的解决方案</description>
Expand All @@ -15,6 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<junit.version>4.13.2</junit.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
</properties>

<dependencies>
Expand All @@ -25,6 +26,13 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<type>maven-plugin</type>
</dependency>
</dependencies>

<issueManagement>
Expand Down Expand Up @@ -70,6 +78,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand Down

0 comments on commit 0d5490f

Please sign in to comment.