Browse Source

updates for relase 3.24.1

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

+ 2
- 2
Readme.html View File



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


<p>-version 3.25
<p>-version 3.24.1 on December 9, 2018
<ul> <ul>
<li>GitHub Issue #228</li>
<li>GitHub Issue #228, #229</li>
<ul> <ul>
</p> </p>



+ 1
- 1
build.xml View File



<project name="javassist" default="jar" basedir="."> <project name="javassist" default="jar" basedir=".">


<property name="dist-version" value="javassist-3.24-GA"/>
<property name="dist-version" value="javassist-3.24.1-GA"/>


<property environment="env"/> <property environment="env"/>
<property name="target.jar" value="javassist.jar"/> <property name="target.jar" value="javassist.jar"/>

BIN
javassist.jar View File


+ 2
- 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.24.0-GA</version>
<version>3.24.1-GA</version>
<name>Javassist</name> <name>Javassist</name>
<url>http://www.javassist.org/</url> <url>http://www.javassist.org/</url>


Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.</i>]]></bottom> Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
<show>public</show> <show>public</show>
<nohelp>true</nohelp> <nohelp>true</nohelp>
<doclint>none</doclint>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>

+ 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.24.0-GA
Specification-Version: 3.24.1-GA
Main-Class: javassist.CtClass Main-Class: javassist.CtClass
Automatic-Module-Name: org.javassist Automatic-Module-Name: org.javassist

+ 1
- 1
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.24.0-GA";
public static final String version = "3.24.1-GA";


/** /**
* Prints the version number and the copyright notice. * Prints the version number and the copyright notice.

Loading…
Cancel
Save