Author: dereed
Date: 2010-03-09 12:34:20 -0500 (Tue, 09 Mar 2010)
New Revision: 8348
Modified:
core/tags/1.4.1.SP14/build.xml
core/tags/1.4.1.SP14/src/org/jboss/cache/Version.java
Log:
Update versions
Modified: core/tags/1.4.1.SP14/build.xml
===================================================================
--- core/tags/1.4.1.SP14/build.xml 2010-03-09 17:21:04 UTC (rev 8347)
+++ core/tags/1.4.1.SP14/build.xml 2010-03-09 17:34:20 UTC (rev 8348)
@@ -6,7 +6,7 @@
<property name="module.name" value="JBossCache"/>
<!--We now requires version to have no white space since Ant+JBossAop will sometime
choke. -->
- <property name="module.version" value="1.4.1-SNAPSHOT"/>
+ <property name="module.version" value="1.4.1.SP14"/>
<property name="implementation.url"
value="http://www.jboss.com/products/jbosscache"/>
<property file="build.properties"/>
<property name="root.dir" value="${basedir}"/>
Modified: core/tags/1.4.1.SP14/src/org/jboss/cache/Version.java
===================================================================
--- core/tags/1.4.1.SP14/src/org/jboss/cache/Version.java 2010-03-09 17:21:04 UTC (rev
8347)
+++ core/tags/1.4.1.SP14/src/org/jboss/cache/Version.java 2010-03-09 17:34:20 UTC (rev
8348)
@@ -10,10 +10,9 @@
*/
public class Version
{
- public static final String version = "1.4.1-SNAPSHOT";
+ public static final String version = "1.4.1.SP14";
public static final String codename = "Cayenne";
- public static byte[] version_id = {'0', '1', '4',
'1'};
- public static final String cvs = "$Id$";
+ public static byte[] version_id = {'0', '1', '4', '1',
'S', 'P', '1', '4'};
private static final int MAJOR_SHIFT = 11;
private static final int MINOR_SHIFT = 6;
@@ -31,7 +30,6 @@
{
System.out.println("\nVersion: \t" + version);
System.out.println("Codename: \t" + codename);
- System.out.println("CVS: \t" + cvs);
System.out.println("History: \t(see
http://jira.jboss.com/jira/browse/JBCACHE
for details)\n");
}
@@ -39,7 +37,7 @@
* Returns version information as a string.
*/
public static String printVersion() {
- return "JBossCache '" + codename + "' " + version +
"[ " + cvs + "]";
+ return "JBossCache '" + codename + "' " + version;
}
public static String printVersionId(byte[] v, int len)