This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit 31f539a1fdadc0401af70bb39732c110e128eaea Author: Juan Pablo Santos RodrÃguez <[email protected]> AuthorDate: Sun Jul 7 22:37:01 2024 +0200 2.12.3-git-01 --- jspwiki-api/src/main/java/org/apache/wiki/api/Release.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java b/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java index 169242050..e98d39a60 100644 --- a/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java +++ b/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java @@ -50,7 +50,7 @@ public final class Release { * <p> * If the POSTFIX is empty, it is not added to the version string. */ - private static final String POSTFIX = ""; + private static final String POSTFIX = "-git-"; /** The JSPWiki major version. */ public static final int VERSION = 2; @@ -59,7 +59,7 @@ public final class Release { public static final int REVISION = 12; /** The minor revision. */ - public static final int MINORREVISION = 2; + public static final int MINORREVISION = 3; /** The build number/identifier. This is a String as opposed to an integer, just so that people can add other identifiers to it. * The build number is incremented every time a committer checks in code, and reset when a release is made. @@ -69,7 +69,7 @@ public final class Release { * <p> * If the build identifier is empty, it is not added. */ - public static final String BUILD = ""; + public static final String BUILD = "01"; /** * This is the generic version string you should use when printing out the version. It is of
