]> source.dussan.org Git - javassist.git/commitdiff
prepares for 3.29.0-GA release rel_3_29_0_ga
authorchibash <chiba@javassist.org>
Fri, 13 May 2022 13:58:52 +0000 (22:58 +0900)
committerchibash <chiba@javassist.org>
Fri, 13 May 2022 13:58:52 +0000 (22:58 +0900)
README.md
Readme.html
build.xml
javassist.jar
pom.xml
src/main/META-INF/MANIFEST.MF
src/main/javassist/CtClass.java

index 2f208daebaf12949f81d4165a47690f80b470175..629fabc0a2437525feaa44d6bce6a4b9e48de46e 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-2021 by Shigeru Chiba, All rights reserved.
+Copyright (C) 1999-2022 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 f7736c597a5909af41c0345914c2dab165b9fd94..18bde93e3afc9ff57d0d5f3d718fd15ca9eb9cb1 100644 (file)
@@ -291,9 +291,9 @@ see javassist.Dump.
 
 <h2>Changes</h2>
 
-<p>-version 3.29
+<p>-version 3.29 on May 13, 2022
 <ul>
-  <li>GitHub Issue #378.
+  <li>GitHub Issue #378, PR #278, #299, #382, #383, #390, #391, #395, #399, #409.
 </li>
 
 <p>-version 3.28 on May 8, 2021
index 9c8095a458793285185d90529b872a81ede676cf..7be1aa4b1c99e6b69e1e32edd4908ec848182bac 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.28.0-GA"/>
+  <property name="dist-version" value="javassist-3.29.0-GA"/>
 
   <property environment="env"/>
   <property name="target.jar" value="javassist.jar"/>
index bdb0fce8286ce71c1199f653c18190114b14ccfa..bcdd5600318c781d566a49ecb6b1cb42da4aa7d4 100644 (file)
Binary files a/javassist.jar and b/javassist.jar differ
diff --git a/pom.xml b/pom.xml
index 4f8ffca2e0a1862c634bb437b0b220e0695f12f1..b7640489227b1c0a2ca51e9598a57742a0a44b79 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.28.0-GA</version>
+  <version>3.29.0-GA</version>
   <name>Javassist</name>
   <url>http://www.javassist.org/</url>
 
   
   mvn deploy -Dversion=3.x.y-SNAPSHOT
 
-  To deploy a release you need to change the version to 3.x.y.GA and run
+  To deploy a release you need to change the version to 3.x.y-GA and run
 
   mvn deploy
     -->
index b53b6e3710c93d65f29255f8fb6473798cb25779..2097473e700dd5cb77c872556e066f47dd67e935 100644 (file)
@@ -1,5 +1,5 @@
 Specification-Title: Javassist
 Specification-Vendor: Shigeru Chiba, www.javassist.org
-Specification-Version: 3.29.0-SNAPSHOT
+Specification-Version: 3.29.0-GA
 Main-Class: javassist.CtClass
 Automatic-Module-Name: org.javassist
index cba708ae65207c2779b21bd29e45d9d750d56bee..4755f0363ea57d977b7a64afe698075b8976c2f4 100644 (file)
@@ -69,7 +69,7 @@ public abstract class CtClass {
     /**
      * The version number of this release.
      */
-    public static final String version = "3.29.0-SNAPSHOT";
+    public static final String version = "3.29.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-2021 Shigeru Chiba."
+        System.out.println("Copyright (C) 1999-2022 Shigeru Chiba."
                            + " All Rights Reserved.");
     }