diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2008-01-20 13:44:13 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2008-01-20 13:44:13 +0000 |
commit | 2db5ca38f3f8a6ce31457045371973f4266948cf (patch) | |
tree | 0b369849c45c6315d7d5b8bc0f717512c6e40ad8 | |
parent | a95aa5298350c3c5d9310c6e99c58534d1e25f6e (diff) | |
download | javassist-2db5ca38f3f8a6ce31457045371973f4266948cf.tar.gz javassist-2db5ca38f3f8a6ce31457045371973f4266948cf.zip |
for 3.7.0.GA release
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@418 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
-rw-r--r-- | License.html | 4 | ||||
-rw-r--r-- | Readme.html | 7 | ||||
-rw-r--r-- | build.xml | 4 | ||||
-rw-r--r-- | src/main/javassist/CtClass.java | 4 |
4 files changed, 11 insertions, 8 deletions
diff --git a/License.html b/License.html index 8f7f46dd..65d6611e 100644 --- a/License.html +++ b/License.html @@ -337,7 +337,7 @@ MISCELLANEOUS.</B> basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.</UL><B>13. MULTIPLE-LICENSED CODE.</B> <UL>Initial Developer may designate portions of the Covered Code as - “Multiple-Licensed?. “Multiple-Licensed? means that the Initial + �Multiple-Licensed?. �Multiple-Licensed? means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A.</UL> @@ -353,7 +353,7 @@ MISCELLANEOUS.</B> <P>The Original Code is Javassist. <P>The Initial Developer of the Original Code is Shigeru Chiba. Portions created by the Initial Developer are<BR> - Copyright (C) 1999-2007 Shigeru Chiba. All Rights Reserved. + Copyright (C) 1999-2008 Shigeru Chiba. All Rights Reserved. <P>Contributor(s): ______________________________________. <P>Alternatively, the contents of this file may be used under the terms of diff --git a/Readme.html b/Readme.html index 22e6d736..8f0bac7a 100644 --- a/Readme.html +++ b/Readme.html @@ -7,7 +7,7 @@ <h1>Javassist version 3</h1> -<h3>Copyright (C) 1999-2007 by Shigeru Chiba, All rights reserved.</h3> +<h3>Copyright (C) 1999-2008 by Shigeru Chiba, All rights reserved.</h3> <p><br></p> @@ -281,7 +281,10 @@ see javassist.Dump. <h2>Changes</h2> -<p>-version 3.7 +<p>-version 3.7 on January 20, 2008 +<ul> + <li>Several minor bugs have been fixed. +</ul> <p>-version 3.6.0 on September 13, 2007 @@ -6,7 +6,7 @@ <project name="javassist" default="jar" basedir="."> - <property name="dist-version" value="javassist-3.6"/> + <property name="dist-version" value="javassist-3.7"/> <property environment="env"/> <property name="target.jar" value="javassist.jar"/> @@ -127,7 +127,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-2007 Shigeru Chiba. All Rights Reserved.</i>]]></bottom> +Copyright (C) 1999-2008 Shigeru Chiba. All Rights Reserved.</i>]]></bottom> </javadoc> </target> diff --git a/src/main/javassist/CtClass.java b/src/main/javassist/CtClass.java index e5033335..d676ded3 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.7.0.beta"; + public static final String version = "3.7.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-2007 Shigeru Chiba." + System.out.println("Copyright (C) 1999-2008 Shigeru Chiba." + " All Rights Reserved."); } |