V1.1.4 RELEASE

This commit is contained in:
暮光:城中城
2023-03-12 15:19:40 +08:00
parent 27c06ce748
commit 269b55d870
12 changed files with 21 additions and 25 deletions

View File

@@ -9,7 +9,7 @@
<parent>
<groupId>com.zyplayer</groupId>
<artifactId>zyplayer-doc</artifactId>
<version>1.1.3</version>
<version>1.1.4</version>
</parent>
<dependencies>

View File

@@ -10,12 +10,13 @@ import java.util.List;
* @since 2021-06-06
*/
public class ZyplayerDocVersion {
public static final String version = "1.1.3";
public static final String version = "1.1.4";
/**
* 每次升级必须添加一条记录用于执行它的升级SQL
*/
public static final List<UpgradeInfo> versionUpgrade = new LinkedList<UpgradeInfo>() {{
add(new UpgradeInfo("1.1.4", false));
add(new UpgradeInfo("1.1.3", false));
add(new UpgradeInfo("1.1.2", true));
}};