Skip to content

Commit

Permalink
3.30.0-GA release
Browse files Browse the repository at this point in the history
  • Loading branch information
chibash committed Dec 16, 2023
1 parent f74619e commit dd27258
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions Changes.md
@@ -1,5 +1,9 @@
### Changes

#### version 3.30 on December 17, 2023

* GitHub PR #434, 448, 463 (Issue #462), 466, 467, 468, 469, 470,

#### version 3.29.2 on September 14, 2022

- GitHub Issue #427.
Expand Down
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-2022 by Shigeru Chiba, All rights reserved.
Copyright (C) 1999-2023 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
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.29.2-GA"/>
<property name="dist-version" value="javassist-3.30.0-GA"/>

<property environment="env"/>
<property name="target.jar" value="javassist.jar"/>
Expand Down
Binary file modified javassist.jar
Binary file not shown.
6 changes: 3 additions & 3 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.29.2-GA</version>
<version>3.30.0-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>

Expand Down Expand Up @@ -151,8 +151,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>11</source>
<target>11</target>
<source>8</source>
<target>8</target>
<testSource>11</testSource>
<testTarget>11</testTarget>
<testCompilerArgument>-parameters</testCompilerArgument>
Expand Down
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.2-GA";
public static final String version = "3.30.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-2022 Shigeru Chiba."
System.out.println("Copyright (C) 1999-2023 Shigeru Chiba."
+ " All Rights Reserved.");
}

Expand Down

0 comments on commit dd27258

Please sign in to comment.