Przeglądaj źródła

for release 3.25.0-GA

tags/rel_3_25_0_ga
chibash 5 lat temu
rodzic
commit
413126268c

+ 2
- 2
Readme.html Wyświetl plik

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

<h2>Changes</h2>

<p>-version 3.25
<p>-version 3.25 on April 16, 2019
<ul>
<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>

<p>-version 3.24.1 on December 9, 2018

+ 1
- 1
build.xml Wyświetl plik

@@ -6,7 +6,7 @@

<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 name="target.jar" value="javassist.jar"/>

BIN
javassist.jar Wyświetl plik


+ 1
- 1
pom.xml Wyświetl plik

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


+ 1
- 1
src/main/META-INF/MANIFEST.MF Wyświetl plik

@@ -1,5 +1,5 @@
Specification-Title: Javassist
Specification-Vendor: Shigeru Chiba, www.javassist.org
Specification-Version: 3.24.1-GA
Specification-Version: 3.25.0-GA
Main-Class: javassist.CtClass
Automatic-Module-Name: org.javassist

+ 1
- 1
src/main/javassist/CtClass.java Wyświetl plik

@@ -69,7 +69,7 @@ public abstract class CtClass {
/**
* 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.

+ 2
- 1
src/test/javassist/JvstTest4.java Wyświetl plik

@@ -692,7 +692,8 @@ public class JvstTest4 extends JvstTestRoot {
System.out.println("JIRA150: " + t1 + ", " + t2 + ", " + t3);
assertTrue("performance test (the next try may succeed): " + t2 + " < 6 * " + t1,
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 {

Ładowanie…
Anuluj
Zapisz