[jbosscache-commits] JBoss Cache SVN: r8460 - in core/tags/1.4.1.SP15: src/org/jboss/cache and 1 other directory.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Mon May 23 18:39:23 EDT 2011


Author: dereed
Date: 2011-05-23 18:39:23 -0400 (Mon, 23 May 2011)
New Revision: 8460

Modified:
   core/tags/1.4.1.SP15/build.xml
   core/tags/1.4.1.SP15/src/org/jboss/cache/Version.java
Log:
Update version info for 1.4.1.SP15


Modified: core/tags/1.4.1.SP15/build.xml
===================================================================
--- core/tags/1.4.1.SP15/build.xml	2011-05-23 22:28:21 UTC (rev 8459)
+++ core/tags/1.4.1.SP15/build.xml	2011-05-23 22:39:23 UTC (rev 8460)
@@ -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.SP15"/>
    <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.SP15/src/org/jboss/cache/Version.java
===================================================================
--- core/tags/1.4.1.SP15/src/org/jboss/cache/Version.java	2011-05-23 22:28:21 UTC (rev 8459)
+++ core/tags/1.4.1.SP15/src/org/jboss/cache/Version.java	2011-05-23 22:39:23 UTC (rev 8460)
@@ -10,10 +10,9 @@
  */
 public class Version
 {
-   public static final String version = "1.4.1-SNAPSHOT";
+   public static final String version = "1.4.1.SP15";
    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', '5'};
 
    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)



More information about the jbosscache-commits mailing list