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
<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
<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"/>
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
-->
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
/**
* 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.
*/
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.");
}