]> source.dussan.org Git - javassist.git/commitdiff
3.30.0-GA release rel_3_30_0_ga
authorchibash <chiba@javassist.org>
Sat, 16 Dec 2023 15:47:57 +0000 (00:47 +0900)
committerchibash <chiba@javassist.org>
Sat, 16 Dec 2023 15:47:57 +0000 (00:47 +0900)
Changes.md
README.md
build.xml
javassist.jar
pom.xml
src/main/javassist/CtClass.java

index b82ddd379d754fd6c8939904156e2edaa78be386..28d6af10c7325235a9870f88793917423af03bd1 100644 (file)
@@ -1,5 +1,9 @@
 ### Changes
 
+#### version 3.30 on December 17, 2023
+
+* GitHub PR #434, 448, 463 (Issue #462), 466, 467, 468, 469, 470,
+
 #### version 3.29.2 on September 14, 2022
 
 - GitHub Issue #427.
index eb6ff33060492d15c89b2f10f22bce557321791d..c21f8382a71200e3f3090649a1ea11c98a6f103b 100644 (file)
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
 Java bytecode engineering toolkit
 ### [Javassist version 3](http://www.javassist.org)
 
-Copyright (C) 1999-2022 by Shigeru Chiba, All rights reserved.
+Copyright (C) 1999-2023 by Shigeru Chiba, All rights reserved.
 
 Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
 simple. It is a class library for editing bytecodes in Java; it enables Java
index df1ba25bf57cc579f3d19398ae721d5e8d1b8b87..131f899594cf9dfe5af64c00ff9f5bf696d07a3b 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.29.2-GA"/>
+  <property name="dist-version" value="javassist-3.30.0-GA"/>
 
   <property environment="env"/>
   <property name="target.jar" value="javassist.jar"/>
index 33370bc83c6e9fd8f8e6f0f91af7cc93c6fe19b0..b5d4cd7cdefe9e2a9a25e0ac9e35dbdf4efc0bab 100644 (file)
Binary files a/javassist.jar and b/javassist.jar differ
diff --git a/pom.xml b/pom.xml
index 42106d56331693560cbb6308c75ed6e204aa7a05..850108eb20edd02d586fea42dab6912e72f8ddfc 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.29.2-GA</version>
+  <version>3.30.0-GA</version>
   <name>Javassist</name>
   <url>http://www.javassist.org/</url>
 
         <artifactId>maven-compiler-plugin</artifactId>
         <version>3.2</version>
         <configuration>
-          <source>11</source>
-          <target>11</target>
+          <source>8</source>
+          <target>8</target>
           <testSource>11</testSource>
           <testTarget>11</testTarget>
           <testCompilerArgument>-parameters</testCompilerArgument>
index 8880b1f61fe5fa4b58d2396bef72e553549d1da5..c2f04521b3e8a484471cc023fc80704847ccffb7 100644 (file)
@@ -69,7 +69,7 @@ public abstract class CtClass {
     /**
      * The version number of this release.
      */
-    public static final String version = "3.29.2-GA";
+    public static final String version = "3.30.0-GA";
 
     /**
      * Prints the version number and the copyright notice.
@@ -80,7 +80,7 @@ public abstract class CtClass {
      */
     public static void main(String[] args) {
         System.out.println("Javassist version " + CtClass.version);
-        System.out.println("Copyright (C) 1999-2022 Shigeru Chiba."
+        System.out.println("Copyright (C) 1999-2023 Shigeru Chiba."
                            + " All Rights Reserved.");
     }