diff options
author | James Moger <james.moger@gitblit.com> | 2014-10-22 22:39:43 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2014-10-22 22:41:28 -0400 |
commit | 988e9b26b703baac20d78d6770fd2feebccd6cac (patch) | |
tree | 10b877b62cebd5434f792bd8e3078935ef90fdf2 | |
parent | 4fb860b289bce291d2ccbdb16bba91048540b69f (diff) | |
download | iciql-988e9b26b703baac20d78d6770fd2feebccd6cac.tar.gz iciql-988e9b26b703baac20d78d6770fd2feebccd6cac.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 61f6dd5..2656e5d 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.3.0 +version: 1.3.1-SNAPSHOT packaging: jar+zip inceptionYear: 2011 diff --git a/releases.moxie b/releases.moxie index 426b9b4..c0e2c50 100644 --- a/releases.moxie +++ b/releases.moxie @@ -1,4 +1,22 @@ # +# ${project.version} release +# +r22: { + title: ${project.name} ${project.version} released + id: ${project.version} + date: ${project.buildDate} + note: ~ + html: ~ + text: ~ + security: ~ + fixes: ~ + changes: ~ + additions: ~ + dependencyChanges: ~ + contributors: ~ +} + +# # 1.3.0 release # r21: { @@ -450,5 +468,5 @@ r1: { # Release log data # release: &r21 -snapshot: ~ +snapshot: &r22 releases: &r[1..21] diff --git a/src/main/java/com/iciql/Constants.java b/src/main/java/com/iciql/Constants.java index 108ec57..82b6d79 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.3.0";
+ public static final String VERSION = "1.3.1-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-10-22";
+ 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.
|