diff options
author | James Moger <james.moger@gitblit.com> | 2014-11-05 08:56:01 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2014-11-05 08:56:38 -0500 |
commit | ed3853ef02cf46dc40e386e498ad52e28e05bfa3 (patch) | |
tree | 43ec1d27d95dc098857fe42c23539cc3226f97b3 | |
parent | 28fe308d1eb8fbb77c9279668011d827b4f2b845 (diff) | |
download | iciql-ed3853ef02cf46dc40e386e498ad52e28e05bfa3.tar.gz iciql-ed3853ef02cf46dc40e386e498ad52e28e05bfa3.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 a318949..03acef4 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.4.0 +version: 1.5.0-SNAPSHOT packaging: jar+zip inceptionYear: 2011 diff --git a/releases.moxie b/releases.moxie index a3c5f2e..9cdb65b 100644 --- a/releases.moxie +++ b/releases.moxie @@ -1,4 +1,22 @@ # +# ${project.version} release +# +r23: { + title: ${project.name} ${project.version} released + id: ${project.version} + date: ${project.buildDate} + note: ~ + html: ~ + text: ~ + security: ~ + fixes: ~ + changes: ~ + additions: ~ + dependencyChanges: ~ + contributors: ~ +} + +# # 1.4.0 release # r22: { @@ -476,5 +494,5 @@ r1: { # Release log data # release: &r22 -snapshot: ~ +snapshot: &r23 releases: &r[1..22] diff --git a/src/main/java/com/iciql/Constants.java b/src/main/java/com/iciql/Constants.java index 325e898..0e3fc3b 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.4.0";
+ public static final String VERSION = "1.5.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-05";
+ 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.
|