diff options
author | James Moger <james.moger@gitblit.com> | 2014-11-10 21:53:53 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2014-11-10 21:54:47 -0500 |
commit | 1245e4db2dadcc7b10e9e516eafb58a944be0dc6 (patch) | |
tree | 0123083e702e996139298f58a80e9fb46bbda6ed | |
parent | f7d86065079946648f08b32e2874ac47bd2ec50f (diff) | |
download | iciql-1245e4db2dadcc7b10e9e516eafb58a944be0dc6.tar.gz iciql-1245e4db2dadcc7b10e9e516eafb58a944be0dc6.zip |
Reset build identifiers for next development cycle
-rw-r--r-- | build.moxie | 2 | ||||
-rw-r--r-- | releases.moxie | 20 | ||||
-rw-r--r-- | src/main/java/com/iciql/Constants.java | 4 |
3 files changed, 22 insertions, 4 deletions
diff --git a/build.moxie b/build.moxie index 15d273c..1bc11b8 100644 --- a/build.moxie +++ b/build.moxie @@ -10,7 +10,7 @@ name: Iciql description: 'a model-based database access wrapper for JDBC' groupId: com.iciql artifactId: iciql -version: 1.5.0 +version: 1.6.0-SNAPSHOT packaging: jar+zip inceptionYear: 2011 diff --git a/releases.moxie b/releases.moxie index 41273e7..a07a320 100644 --- a/releases.moxie +++ b/releases.moxie @@ -1,4 +1,22 @@ # +# ${project.version} release +# +r24: { + title: ${project.name} ${project.version} released + id: ${project.version} + date: ${project.buildDate} + note: ~ + html: ~ + text: ~ + security: ~ + fixes: ~ + changes: ~ + additions: ~ + dependencyChanges: ~ + contributors: ~ +} + +# # 1.5.0 release # r23: { @@ -501,5 +519,5 @@ r1: { # Release log data # release: &r23 -snapshot: ~ +snapshot: &r24 releases: &r[1..23] diff --git a/src/main/java/com/iciql/Constants.java b/src/main/java/com/iciql/Constants.java index f8035f2..ba75de3 100644 --- a/src/main/java/com/iciql/Constants.java +++ b/src/main/java/com/iciql/Constants.java @@ -25,11 +25,11 @@ public class Constants { // The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
- public static final String VERSION = "1.5.0";
+ public static final String VERSION = "1.6.0-SNAPSHOT";
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
- public static final String VERSION_DATE = "2014-11-10";
+ public static final String VERSION_DATE = "PENDING";
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
|