]> source.dussan.org Git - javassist.git/commitdiff
for release 3.25.0-GA
authorchibash <chiba@javassist.org>
Mon, 15 Apr 2019 16:33:33 +0000 (01:33 +0900)
committerchibash <chiba@javassist.org>
Mon, 15 Apr 2019 16:33:33 +0000 (01:33 +0900)
Readme.html
build.xml
javassist.jar
pom.xml
src/main/META-INF/MANIFEST.MF
src/main/javassist/CtClass.java
src/test/javassist/JvstTest4.java

index 0c4daf46b43782f7cdb2189ba3757ce1d343a8e7..92ba667f6491347795b2f7c9388e47745ef75998 100644 (file)
@@ -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
index b6031fcc59640de4ab587a254935964e86e96b84..da6101fc439c6b15f65ffe01dc2ee8edbf0d86fd 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -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"/>
index 5a670de78ffdd793df52a0385eb89ebec7104922..5508e2edfcf820fa197415ea36ca7281575fbae3 100644 (file)
Binary files a/javassist.jar and b/javassist.jar differ
diff --git a/pom.xml b/pom.xml
index 9dfcd9967fc943fca1c443c3a50d49a375acbba9..c3bd1990e69bf72b8f503442ea7365cc78c824b7 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -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>
 
index 72421eb85a4a0b3c4ce57af3974b9e1af78511b9..b9168b9e54aa103482d2bb8ba93ff7efee92923e 100644 (file)
@@ -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
index 5df3a69eb3753fab37e43bb8e8d1773de64f3888..21ac299e6dd650fc39824d01bb8975e213ebc930 100644 (file)
@@ -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.
index 7c8c7457639b2d722019e263d78feeff46a71e24..d53148bd0d3f93925ce12919140eaf56077d4f62 100644 (file)
@@ -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 {