Browse Source

prepares for 3.29.0-GA release

tags/rel_3_29_0_ga^0
chibash 1 year ago
parent
commit
2423b4961e
7 changed files with 9 additions and 9 deletions
  1. 1
    1
      README.md
  2. 2
    2
      Readme.html
  3. 1
    1
      build.xml
  4. BIN
      javassist.jar
  5. 2
    2
      pom.xml
  6. 1
    1
      src/main/META-INF/MANIFEST.MF
  7. 2
    2
      src/main/javassist/CtClass.java

+ 1
- 1
README.md View File

@@ -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

+ 2
- 2
Readme.html View 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

+ 1
- 1
build.xml View File

@@ -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"/>

BIN
javassist.jar View File


+ 2
- 2
pom.xml View File

@@ -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>

@@ -122,7 +122,7 @@
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
-->

+ 1
- 1
src/main/META-INF/MANIFEST.MF View 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

+ 2
- 2
src/main/javassist/CtClass.java View 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.");
}


Loading…
Cancel
Save