[jboss-cvs] javassist SVN: r531 - in trunk: src/main/javassist and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 15 12:12:01 EDT 2010


Author: chiba
Date: 2010-04-15 12:12:01 -0400 (Thu, 15 Apr 2010)
New Revision: 531

Modified:
   trunk/Readme.html
   trunk/build.xml
   trunk/pom.xml
   trunk/src/main/javassist/CtClass.java
Log:
preparation for 3.12.GA release

Modified: trunk/Readme.html
===================================================================
--- trunk/Readme.html	2010-04-15 16:05:15 UTC (rev 530)
+++ trunk/Readme.html	2010-04-15 16:12:01 UTC (rev 531)
@@ -281,12 +281,8 @@
 
 <h2>Changes</h2>
 
-<p>-version 3.12
+<p>-version 3.12 on April 16, 2010
 
-<ul>
-	<li>JIRA JASSIST-89, 95
-</ul>
-
 <p>-version 3.11 on July 3, 2009
 <ul>
 	<li>JIRA JASSIST-67, 68, 74, 75, 76, 77, 81, 83, 84, 85, 86, 87 were fixed.
@@ -717,7 +713,7 @@
 <h2>Copyright notices</h2>
 
 <p>Javassist, a Java-bytecode translator toolkit.
-<br>Copyright (C) 1999-2009 Shigeru Chiba. All Rights Reserved.
+<br>Copyright (C) 1999-2010 Shigeru Chiba. All Rights Reserved.
 
 <p>The contents of this software, Javassist, are subject to
 the Mozilla Public License Version 1.1 (the "License");<br>
@@ -734,7 +730,7 @@
 
 <p>The Initial Developer of the Original Code is Shigeru Chiba. 
 Portions created by the Initial Developer are<br>&nbsp;
-Copyright (C) 1999-2009 Shigeru Chiba. All Rights Reserved. 
+Copyright (C) 1999-2010 Shigeru Chiba. All Rights Reserved. 
 <p>Contributor(s): ______________________________________. 
 
 <p>Alternatively, the contents of this software may be used under the

Modified: trunk/build.xml
===================================================================
--- trunk/build.xml	2010-04-15 16:05:15 UTC (rev 530)
+++ trunk/build.xml	2010-04-15 16:12:01 UTC (rev 531)
@@ -185,7 +185,7 @@
            windowtitle="Javassist API">
       <doctitle><![CDATA[<h1>Javassist</h1>]]></doctitle>
       <bottom><![CDATA[<i>Javassist, a Java-bytecode translator toolkit.<br>
-Copyright (C) 1999-2009 Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
+Copyright (C) 1999-2010 Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
     </javadoc>
   </target>
 

Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml	2010-04-15 16:05:15 UTC (rev 530)
+++ trunk/pom.xml	2010-04-15 16:12:01 UTC (rev 531)
@@ -8,7 +8,7 @@
   <description>Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
      simple.  It is a class library for editing bytecodes in Java.
   </description>
-  <version>3.12.0-SNAPSHOT</version>
+  <version>3.12.0.GA</version>
   <name>Javassist</name>
   <url>http://www.javassist.org/</url>
   <distributionManagement>

Modified: trunk/src/main/javassist/CtClass.java
===================================================================
--- trunk/src/main/javassist/CtClass.java	2010-04-15 16:05:15 UTC (rev 530)
+++ trunk/src/main/javassist/CtClass.java	2010-04-15 16:12:01 UTC (rev 531)
@@ -52,7 +52,7 @@
     /**
      * The version number of this release.
      */
-    public static final String version = "3.12.0-SNAPSHOT";
+    public static final String version = "3.12.0.GA";
 
     /**
      * Prints the version number and the copyright notice.
@@ -63,7 +63,7 @@
      */
     public static void main(String[] args) {
         System.out.println("Javassist version " + CtClass.version);
-        System.out.println("Copyright (C) 1999-2009 Shigeru Chiba."
+        System.out.println("Copyright (C) 1999-2010 Shigeru Chiba."
                            + " All Rights Reserved.");
     }
 




More information about the jboss-cvs-commits mailing list