This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
The following commit(s) were added to refs/heads/master by this push: new c7a62c2 Update next version from 6.4.2 to 6.5.0 since we've added public APIs. c7a62c2 is described below commit c7a62c2afe3388ca9223b3f7cdbb583a8fbe49d3 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jun 1 18:35:18 2020 -0400 Update next version from 6.4.2 to 6.5.0 since we've added public APIs. --- pom.xml | 4 ++-- src/changes/changes.xml | 2 +- src/main/java/org/apache/bcel/generic/InstructionFactory.java | 2 +- src/main/java/org/apache/bcel/generic/MethodGen.java | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 5085050..446c7e0 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ <groupId>org.apache.bcel</groupId> <artifactId>bcel</artifactId> <packaging>jar</packaging> - <version>6.4.2-SNAPSHOT</version> + <version>6.5.0-SNAPSHOT</version> <name>Apache Commons BCEL</name> <description>Apache Commons Bytecode Engineering Library</description> @@ -47,7 +47,7 @@ <maven.compiler.target>1.8</maven.compiler.target> <commons.componentid>bcel</commons.componentid> <commons.module.name>org.apache.bcel</commons.module.name> - <commons.release.version>6.4.2</commons.release.version> + <commons.release.version>6.5.0</commons.release.version> <commons.release.isDistModule>true</commons.release.isDistModule> <commons.rc.version>RC1</commons.rc.version> <commons.bc.version>6.4.1</commons.bc.version> diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 25ad8c4..982a550 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -62,7 +62,7 @@ The <action> type attribute can be add,update,fix,remove. --> <body> - <release version="6.4.2" date="2019-MM-DD" description="Bug fix release."> + <release version="6.5.0" date="2019-MM-DD" description="Bug fix release."> <action issue="BCEL-330" type="update" dev="ggregory" due-to="Mark Roberts">Remove unnecessary references to Constants.</action> <action issue="BCEL-329" type="fix" dev="ggregory" due-to="Gary Gregory, Mark Roberts">MethodGen duplicates some attributes.</action> <action issue="BCEL-336" type="update" dev="ggregory" due-to="Tomo Suzuki, Gary Gregory">MethodGen throws NullPointerException upon Invalid Class File Missing Constructor Body.</action> diff --git a/src/main/java/org/apache/bcel/generic/InstructionFactory.java b/src/main/java/org/apache/bcel/generic/InstructionFactory.java index 3a0c817..244463b 100644 --- a/src/main/java/org/apache/bcel/generic/InstructionFactory.java +++ b/src/main/java/org/apache/bcel/generic/InstructionFactory.java @@ -95,7 +95,7 @@ public class InstructionFactory implements InstructionConstants { * @param kind how to invoke: INVOKEINTERFACE, INVOKESTATIC, INVOKEVIRTUAL, or INVOKESPECIAL * @param use_interface force use of InterfaceMethodref * @return A new InvokeInstruction. - * @since 6.4.2 + * @since 6.5.0 */ public InvokeInstruction createInvoke( final String class_name, final String name, final Type ret_type, final Type[] arg_types, final short kind, final boolean use_interface) { diff --git a/src/main/java/org/apache/bcel/generic/MethodGen.java b/src/main/java/org/apache/bcel/generic/MethodGen.java index 97cb547..67a1766 100644 --- a/src/main/java/org/apache/bcel/generic/MethodGen.java +++ b/src/main/java/org/apache/bcel/generic/MethodGen.java @@ -651,8 +651,8 @@ public class MethodGen extends FieldGenOrMethodGen { /** * Would prefer to make this private, but need a way to test if client is - * using BCEL version 6.4.2 or later that contains fix for BCEL-329. - * @since 6.4.2 + * using BCEL version 6.5.0 or later that contains fix for BCEL-329. + * @since 6.5.0 */ public void removeRuntimeAttributes(Attribute[] attrs) { for (final Attribute attr : attrs) {