Skip to content

Commit 4a8366d

Browse files
Release v2.0 GA
1 parent 73da374 commit 4a8366d

File tree

12 files changed

+12
-12
lines changed
  • ymate-platform-cache/src/main/java/net/ymate/platform/cache
  • ymate-platform-configuration/src/main/java/net/ymate/platform/configuration
  • ymate-platform-core/src/main/java/net/ymate/platform/core
  • ymate-platform-log/src/main/java/net/ymate/platform/log
  • ymate-platform-persistence-jdbc/src/main/java/net/ymate/platform/persistence/jdbc
  • ymate-platform-persistence-mongodb/src/main/java/net/ymate/platform/persistence/mongodb
  • ymate-platform-persistence-redis/src/main/java/net/ymate/platform/persistence/redis
  • ymate-platform-persistence/src/main/java/net/ymate/platform/persistence
  • ymate-platform-plugin/src/main/java/net/ymate/platform/plugin
  • ymate-platform-serv/src/main/java/net/ymate/platform/serv
  • ymate-platform-validation/src/main/java/net/ymate/platform/validation
  • ymate-platform-webmvc/src/main/java/net/ymate/platform/webmvc

12 files changed

+12
-12
lines changed

ymate-platform-cache/src/main/java/net/ymate/platform/cache/Caches.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
@Module
4141
public class Caches implements IModule, ICaches {
4242

43-
public static final Version VERSION = new Version(2, 0, 0, Caches.class.getPackage().getImplementationVersion(), Version.VersionType.Alphal);
43+
public static final Version VERSION = new Version(2, 0, 0, Caches.class.getPackage().getImplementationVersion(), Version.VersionType.GA);
4444

4545
private final Log _LOG = LogFactory.getLog(Caches.class);
4646

ymate-platform-configuration/src/main/java/net/ymate/platform/configuration/Cfgs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
@Module
4444
public class Cfgs implements IModule, IConfig {
4545

46-
public static final Version VERSION = new Version(2, 0, 0, Cfgs.class.getPackage().getImplementationVersion(), Version.VersionType.Alphal);
46+
public static final Version VERSION = new Version(2, 0, 0, Cfgs.class.getPackage().getImplementationVersion(), Version.VersionType.GA);
4747

4848
private final Log _LOG = LogFactory.getLog(Cfgs.class);
4949

ymate-platform-core/src/main/java/net/ymate/platform/core/YMP.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
*/
5555
public class YMP {
5656

57-
public static final Version VERSION = new Version(2, 0, 0, Version.VersionType.Alphal);
57+
public static final Version VERSION = new Version(2, 0, 0, Version.VersionType.GA);
5858

5959
private static final Log _LOG = LogFactory.getLog(YMP.class);
6060

ymate-platform-log/src/main/java/net/ymate/platform/log/Logs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
@Module
3838
public class Logs implements IModule, ILog {
3939

40-
public static final Version VERSION = new Version(2, 0, 0, Logs.class.getPackage().getImplementationVersion(), Version.VersionType.Alphal);
40+
public static final Version VERSION = new Version(2, 0, 0, Logs.class.getPackage().getImplementationVersion(), Version.VersionType.GA);
4141

4242
private final Log _LOG = LogFactory.getLog(Logs.class);
4343

ymate-platform-persistence-jdbc/src/main/java/net/ymate/platform/persistence/jdbc/JDBC.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
@Module
4040
public class JDBC implements IModule, IDatabase {
4141

42-
public static final Version VERSION = new Version(2, 0, 0, JDBC.class.getPackage().getImplementationVersion(), Version.VersionType.Alphal);
42+
public static final Version VERSION = new Version(2, 0, 0, JDBC.class.getPackage().getImplementationVersion(), Version.VersionType.GA);
4343

4444
private final Log _LOG = LogFactory.getLog(JDBC.class);
4545

ymate-platform-persistence-mongodb/src/main/java/net/ymate/platform/persistence/mongodb/MongoDB.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
@Module
3737
public class MongoDB implements IModule, IMongo {
3838

39-
public static final Version VERSION = new Version(2, 0, 0, MongoDB.class.getPackage().getImplementationVersion(), Version.VersionType.Alphal);
39+
public static final Version VERSION = new Version(2, 0, 0, MongoDB.class.getPackage().getImplementationVersion(), Version.VersionType.GA);
4040

4141
private final Log _LOG = LogFactory.getLog(MongoDB.class);
4242

ymate-platform-persistence-redis/src/main/java/net/ymate/platform/persistence/redis/Redis.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
@Module
3636
public class Redis implements IModule, IRedis {
3737

38-
public static final Version VERSION = new Version(2, 0, 0, Redis.class.getPackage().getImplementationVersion(), Version.VersionType.Alphal);
38+
public static final Version VERSION = new Version(2, 0, 0, Redis.class.getPackage().getImplementationVersion(), Version.VersionType.GA);
3939

4040
private final Log _LOG = LogFactory.getLog(Redis.class);
4141

ymate-platform-persistence/src/main/java/net/ymate/platform/persistence/Persistence.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
@Module
3030
public class Persistence implements IModule {
3131

32-
public static final Version VERSION = new Version(2, 0, 0, Persistence.class.getPackage().getImplementationVersion(), Version.VersionType.Alphal);
32+
public static final Version VERSION = new Version(2, 0, 0, Persistence.class.getPackage().getImplementationVersion(), Version.VersionType.GA);
3333

3434
private YMP __owner;
3535

ymate-platform-plugin/src/main/java/net/ymate/platform/plugin/Plugins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
@Module
4747
public class Plugins implements IModule, IPlugins {
4848

49-
public static final Version VERSION = new Version(2, 0, 0, Plugins.class.getPackage().getImplementationVersion(), Version.VersionType.Alphal);
49+
public static final Version VERSION = new Version(2, 0, 0, Plugins.class.getPackage().getImplementationVersion(), Version.VersionType.GA);
5050

5151
private final Log _LOG = LogFactory.getLog(Plugins.class);
5252

ymate-platform-serv/src/main/java/net/ymate/platform/serv/Servs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
@Module
4141
public class Servs implements IModule, IServ {
4242

43-
public static final Version VERSION = new Version(2, 0, 0, Servs.class.getPackage().getImplementationVersion(), Version.VersionType.Alphal);
43+
public static final Version VERSION = new Version(2, 0, 0, Servs.class.getPackage().getImplementationVersion(), Version.VersionType.GA);
4444

4545
private final Log _LOG = LogFactory.getLog(Servs.class);
4646

0 commit comments

Comments
 (0)