diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2010-04-15 16:12:01 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2010-04-15 16:12:01 +0000 |
commit | bf0dacc14fc73128155007a7a3c5b89b296f3238 (patch) | |
tree | 1485ab06c614bc30fab7e9eea460ef2e38dc89cc | |
parent | ace1eaed1dc97a8c608c576bcb5e6811b128ae56 (diff) | |
download | javassist-bf0dacc14fc73128155007a7a3c5b89b296f3238.tar.gz javassist-bf0dacc14fc73128155007a7a3c5b89b296f3238.zip |
preparation for 3.12.GA releaserel_3_12_0_ga
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@531 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
-rw-r--r-- | Readme.html | 10 | ||||
-rw-r--r-- | build.xml | 2 | ||||
-rw-r--r-- | pom.xml | 2 | ||||
-rw-r--r-- | src/main/javassist/CtClass.java | 4 |
4 files changed, 7 insertions, 11 deletions
diff --git a/Readme.html b/Readme.html index a8abf608..f4f23ff2 100644 --- a/Readme.html +++ b/Readme.html @@ -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> -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 @@ -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> @@ -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> diff --git a/src/main/javassist/CtClass.java b/src/main/javassist/CtClass.java index cd300deb..5a11b999 100644 --- a/src/main/javassist/CtClass.java +++ b/src/main/javassist/CtClass.java @@ -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."); } |