]> source.dussan.org Git - javassist.git/commitdiff
preparation for 3.12.GA release rel_3_12_0_ga
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Thu, 15 Apr 2010 16:12:01 +0000 (16:12 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Thu, 15 Apr 2010 16:12:01 +0000 (16:12 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@531 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

Readme.html
build.xml
pom.xml
src/main/javassist/CtClass.java

index a8abf6087fa073d8f972eb07b73e33cc5468e96c..f4f23ff2de34c64fb0bdb0810eae95d6b80d9fd6 100644 (file)
@@ -281,11 +281,7 @@ see javassist.Dump.
 
 <h2>Changes</h2>
 
-<p>-version 3.12
-
-<ul>
-       <li>JIRA JASSIST-89, 95
-</ul>
+<p>-version 3.12 on April 16, 2010
 
 <p>-version 3.11 on July 3, 2009
 <ul>
@@ -717,7 +713,7 @@ and <a href="http://www.jboss.org/index.html?module=html&op=userdisplay&id=devel
 <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 @@ See the License for the specific language governing rights and
 
 <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
index 315c746031c738505ae681ed318bfc27cac9bb40..0da95e5821ec8f93b5ed1a8e6c44d5566ab6049b 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -185,7 +185,7 @@ to ${build.classes.dir}.</echo>
            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>
 
diff --git a/pom.xml b/pom.xml
index 85892bb197cdfef4d1ef16d007048d311bc1f40f..94a7e66384bc9f7558f4e8ec19f582b86b7af518 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -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>
index cd300deb84008df68e7602dab37786a06f044026..5a11b999e8ddfe4f16b0c8ad6f2577d286c1a55f 100644 (file)
@@ -52,7 +52,7 @@ public abstract class CtClass {
     /**
      * 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 abstract class CtClass {
      */
     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.");
     }