From: chiba Date: Sun, 20 Jan 2008 13:44:13 +0000 (+0000) Subject: for 3.7.0.GA release X-Git-Tag: rel_3_17_1_ga~224 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2db5ca38f3f8a6ce31457045371973f4266948cf;p=javassist.git for 3.7.0.GA release git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@418 30ef5769-5b8d-40dd-aea6-55b5d6557bb3 --- diff --git a/License.html b/License.html index 8f7f46dd..65d6611e 100644 --- a/License.html +++ b/License.html @@ -337,7 +337,7 @@ MISCELLANEOUS. basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.13. MULTIPLE-LICENSED CODE. @@ -353,7 +353,7 @@ MISCELLANEOUS.

The Original Code is Javassist.

The Initial Developer of the Original Code is Shigeru Chiba. Portions created by the Initial Developer are
  - Copyright (C) 1999-2007 Shigeru Chiba. All Rights Reserved. + Copyright (C) 1999-2008 Shigeru Chiba. All Rights Reserved.

Contributor(s): ______________________________________.

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 @@

Javassist version 3

-

Copyright (C) 1999-2007 by Shigeru Chiba, All rights reserved.

+

Copyright (C) 1999-2008 by Shigeru Chiba, All rights reserved.


@@ -281,7 +281,10 @@ see javassist.Dump.

Changes

-

-version 3.7 +

-version 3.7 on January 20, 2008 +

-version 3.6.0 on September 13, 2007 diff --git a/build.xml b/build.xml index 9562ba16..1a6385e0 100644 --- a/build.xml +++ b/build.xml @@ -6,7 +6,7 @@ - + @@ -127,7 +127,7 @@ to ${build.classes.dir}. windowtitle="Javassist API"> Javassist]]> Javassist, a Java-bytecode translator toolkit.
-Copyright (C) 1999-2007 Shigeru Chiba. All Rights Reserved.]]>
+Copyright (C) 1999-2008 Shigeru Chiba. All Rights Reserved.]]> 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."); }