Skip to content

Commit

Permalink
prepares for 3.29.0-GA release
Browse files Browse the repository at this point in the history
  • Loading branch information
chibash committed May 13, 2022
1 parent e77a626 commit 2423b49
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Readme.html
Expand Up @@ -291,9 +291,9 @@ <h2>Release</h2>

<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
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Expand Up @@ -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"/>
Expand Down
Binary file modified javassist.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -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>

Expand Down Expand Up @@ -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
-->
Expand Down
2 changes: 1 addition & 1 deletion src/main/META-INF/MANIFEST.MF
@@ -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
4 changes: 2 additions & 2 deletions src/main/javassist/CtClass.java
Expand Up @@ -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.
Expand All @@ -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.");
}

Expand Down

0 comments on commit 2423b49

Please sign in to comment.