Browse Source

3.22.0-GA release

tags/list
chibash 6 years ago
parent
commit
bb14f52dc9

+ 1
- 1
README.md View File

@@ -1,7 +1,7 @@
Java bytecode engineering toolkit
### [Javassist version 3](http://www.javassist.org)

Copyright (C) 1999- by Shigeru Chiba, All rights reserved.
Copyright (C) 1999-2017 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

+ 3
- 2
Readme.html View File

@@ -7,7 +7,7 @@

<h1>Javassist version 3</h1>

<h3>Copyright (C) 1999-2016 by Shigeru Chiba, All rights reserved.</h3>
<h3>Copyright (C) 1999-2017 by Shigeru Chiba, All rights reserved.</h3>

<p><br></p>

@@ -281,9 +281,10 @@ see javassist.Dump.

<h2>Changes</h2>

<p>-version 3.22
<p>-version 3.22 on October 10, 2017

<ul>
<li>Java 9 supports.
<li>JIRA JASSIST-261.
</ul>
</p>

+ 1
- 1
build.xml View File

@@ -6,7 +6,7 @@

<project name="javassist" default="jar" basedir=".">

<property name="dist-version" value="javassist-3.22.0-CR1"/>
<property name="dist-version" value="javassist-3.22.0-GA"/>

<property environment="env"/>
<property name="target.jar" value="javassist.jar"/>

BIN
javassist.jar View File


+ 1
- 1
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.22.0-CR2</version>
<version>3.22.0-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>


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

@@ -1,4 +1,4 @@
Specification-Title: Javassist
Specification-Vendor: Shigeru Chiba, www.javassist.org
Specification-Version: 3.22.0-CR1
Specification-Version: 3.22.0-GA
Main-Class: javassist.CtClass

+ 1
- 1
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.22.0-CR2";
public static final String version = "3.22.0-GA";

/**
* Prints the version number and the copyright notice.

+ 1
- 1
src/main/javassist/util/HotSwapAgent.java View File

@@ -52,7 +52,7 @@ import javassist.NotFoundException;
*
* <pre>
* $ jshell --class-path javassist.jar
* jshell> javassist.util.HotSwapAgent.createAgentJarFile("hotswap.jar")
* jshell&gt; javassist.util.HotSwapAgent.createAgentJarFile("hotswap.jar")
* </pre>
*
* <p>Then, run the JVM with the VM argument {@code -javaagent:hotswap.jar}

Loading…
Cancel
Save