Browse Source

for release 3.25.0-GA

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

+ 2
- 2
Readme.html View File



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


<p>-version 3.25
<p>-version 3.25 on April 16, 2019
<ul> <ul>
<li>GitHub Issue #72 (PR #231), #241, #242 (PR #243), PR #244, <li>GitHub Issue #72 (PR #231), #241, #242 (PR #243), PR #244,
#246 (PR #247), PR #250.
#246 (PR #247), PR #250, #252 (PR #253), PR #254.
</ul> </ul>


<p>-version 3.24.1 on December 9, 2018 <p>-version 3.24.1 on December 9, 2018

+ 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.25-GA"/>
<property name="dist-version" value="javassist-3.25.0-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


+ 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.25-GA</version>
<version>3.25.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.24.1-GA
Specification-Version: 3.25.0-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.25-GA";
public static final String version = "3.25.0-GA";


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

+ 2
- 1
src/test/javassist/JvstTest4.java View File

System.out.println("JIRA150: " + t1 + ", " + t2 + ", " + t3); System.out.println("JIRA150: " + t1 + ", " + t2 + ", " + t3);
assertTrue("performance test (the next try may succeed): " + t2 + " < 6 * " + t1, assertTrue("performance test (the next try may succeed): " + t2 + " < 6 * " + t1,
t2 < t1 * 6); t2 < t1 * 6);
assertTrue(t3 + " < 3 * " + t1, t3 < t1 * 3);
assertTrue("performance test (the next try may succeed): " + t3 + " < 3 * " + t1,
t3 < t1 * 3);
} }


public void testJIRA150b() throws Exception { public void testJIRA150b() throws Exception {

Loading…
Cancel
Save