]> source.dussan.org Git - javassist.git/commitdiff
for 3.7.0.GA release
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sun, 20 Jan 2008 13:44:13 +0000 (13:44 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sun, 20 Jan 2008 13:44:13 +0000 (13:44 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@418 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

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

index 8f7f46dd9f6010e99e19249309c2f4e50b3eabf2..65d6611ed221bfd48085d905ef42150090d238f9 100644 (file)
@@ -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 
-  \93Multiple-Licensed?.&nbsp; \93Multiple-Licensed? means that the Initial 
+  �Multiple-Licensed?.&nbsp; �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>&nbsp;
-  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
index 22e6d73674ea857dd2d92048fc2527760f774abc..8f0bac7af52bfc35bd347d1a10802e2d15a52a12 100644 (file)
@@ -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
 
index 9562ba1696cd434f7b9b5c84f69411d92a06e1bf..1a6385e0dec171d7078814d9c85fd758dabea792 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -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>
 
index e503333584d003f76ab4d46fef818050ae49d572..d676ded349f2d39445fb31a74cc01981d91da40d 100644 (file)
@@ -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.");
     }