Browse Source

updates files for release 3.21.0-GA

tags/rel_3_21_0_ga
chibash 7 years ago
parent
commit
cefc23a132
5 changed files with 6 additions and 6 deletions
  1. 2
    2
      Readme.html
  2. BIN
      javassist.jar
  3. 1
    1
      pom.xml
  4. 1
    1
      src/main/META-INF/MANIFEST.MF
  5. 2
    2
      src/main/javassist/CtClass.java

+ 2
- 2
Readme.html View File



<h1>Javassist version 3</h1> <h1>Javassist version 3</h1>


<h3>Copyright (C) 1999-2015 by Shigeru Chiba, All rights reserved.</h3>
<h3>Copyright (C) 1999-2016 by Shigeru Chiba, All rights reserved.</h3>


<p><br></p> <p><br></p>




<h2>Changes</h2> <h2>Changes</h2>


<p>-version 3.21
<p>-version 3.21 on October 3, 2016
<ul> <ul>
<li>JIRA JASSIST-244, 245, 248, 250, 255, 256, 259, 262. <li>JIRA JASSIST-244, 245, 248, 250, 255, 256, 259, 262.
<li><code>javassist.tools.Callback</code> was modified to be Java 1.4 compatible. <li><code>javassist.tools.Callback</code> was modified to be Java 1.4 compatible.

BIN
javassist.jar View File


+ 1
- 1
pom.xml View File

Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java. simple. It is a class library for editing bytecodes in Java.
</description> </description>
<version>3.20.0-GA</version>
<version>3.21.0-GA</version>
<name>Javassist</name> <name>Javassist</name>
<url>http://www.javassist.org/</url> <url>http://www.javassist.org/</url>



+ 1
- 1
src/main/META-INF/MANIFEST.MF View File

Specification-Title: Javassist Specification-Title: Javassist
Specification-Vendor: Shigeru Chiba, www.javassist.org Specification-Vendor: Shigeru Chiba, www.javassist.org
Specification-Version: 3.20.0-GA
Specification-Version: 3.21.0-GA
Main-Class: javassist.CtClass Main-Class: javassist.CtClass

+ 2
- 2
src/main/javassist/CtClass.java View File

/** /**
* The version number of this release. * The version number of this release.
*/ */
public static final String version = "3.20.0-GA";
public static final String version = "3.21.0-GA";


/** /**
* Prints the version number and the copyright notice. * Prints the version number and the copyright notice.
*/ */
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("Javassist version " + CtClass.version); System.out.println("Javassist version " + CtClass.version);
System.out.println("Copyright (C) 1999-2015 Shigeru Chiba."
System.out.println("Copyright (C) 1999-2016 Shigeru Chiba."
+ " All Rights Reserved."); + " All Rights Reserved.");
} }



Loading…
Cancel
Save