Browse Source

prepares for 3.29.0-GA release

tags/rel_3_29_0_ga^0
chibash 2 years 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

Java bytecode engineering toolkit Java bytecode engineering toolkit
### [Javassist version 3](http://www.javassist.org) ### [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 Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java; it enables Java simple. It is a class library for editing bytecodes in Java; it enables Java

+ 2
- 2
Readme.html View File



<h2>Changes</h2> <h2>Changes</h2>


<p>-version 3.29
<p>-version 3.29 on May 13, 2022
<ul> <ul>
<li>GitHub Issue #378.
<li>GitHub Issue #378, PR #278, #299, #382, #383, #390, #391, #395, #399, #409.
</li> </li>


<p>-version 3.28 on May 8, 2021 <p>-version 3.28 on May 8, 2021

+ 1
- 1
build.xml View File



<project name="javassist" default="jar" basedir="."> <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 environment="env"/>
<property name="target.jar" value="javassist.jar"/> <property name="target.jar" value="javassist.jar"/>

BIN
javassist.jar View File


+ 2
- 2
pom.xml View File

Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java. simple. It is a class library for editing bytecodes in Java.
</description> </description>
<version>3.28.0-GA</version>
<version>3.29.0-GA</version>
<name>Javassist</name> <name>Javassist</name>
<url>http://www.javassist.org/</url> <url>http://www.javassist.org/</url>


mvn deploy -Dversion=3.x.y-SNAPSHOT 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 mvn deploy
--> -->

+ 1
- 1
src/main/META-INF/MANIFEST.MF View File

Specification-Title: Javassist Specification-Title: Javassist
Specification-Vendor: Shigeru Chiba, www.javassist.org Specification-Vendor: Shigeru Chiba, www.javassist.org
Specification-Version: 3.29.0-SNAPSHOT
Specification-Version: 3.29.0-GA
Main-Class: javassist.CtClass Main-Class: javassist.CtClass
Automatic-Module-Name: org.javassist Automatic-Module-Name: org.javassist

+ 2
- 2
src/main/javassist/CtClass.java View File

/** /**
* The version number of this release. * 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. * Prints the version number and the copyright notice.
*/ */
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("Javassist version " + CtClass.version); 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."); + " All Rights Reserved.");
} }



Loading…
Cancel
Save