This is an automated email from the ASF dual-hosted git repository. ppkarwasz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/commons-xml.git
commit d7b976c3bc3d57e25f029b96690f244303e30ae8 Author: Piotr P. Karwasz <[email protected]> AuthorDate: Thu Jun 11 10:18:24 2026 +0200 Next development cycle (#25) This change opens the next development cycle by setting the version to 0.2.0-SNAPSHOT in the Maven build and the Android instrumentation tests. It also advances the japicmp baseline to 0.1.1, the latest release, so the binary-compatibility check guards the 0.2.0 line against the current public API rather than the one before it. Assisted-By: Claude Opus 4.8 (1M context) <[email protected]> --- android-tests/build.gradle.kts | 2 +- pom.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/android-tests/build.gradle.kts b/android-tests/build.gradle.kts index fc90d0d..f76d3a1 100644 --- a/android-tests/build.gradle.kts +++ b/android-tests/build.gradle.kts @@ -10,7 +10,7 @@ plugins { id("de.mannodermaus.android-junit5") version "1.14.0.0" } -val libraryVersion = "0.1.1" +val libraryVersion = "0.2.0-SNAPSHOT" val libraryJar = rootProject.file("../target/copernik-xml-factory-${libraryVersion}.jar") android { diff --git a/pom.xml b/pom.xml index 8540c3b..eb7a2db 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ </parent> <groupId>eu.copernik</groupId> <artifactId>copernik-xml-factory</artifactId> - <version>0.1.1</version> + <version>0.2.0-SNAPSHOT</version> <name>Copernik XML Factory</name> <url>https://github.com/copernik-eu/copernik-xml-factory/</url> <inceptionYear>2026</inceptionYear> @@ -75,7 +75,7 @@ <commons.release.desc>(Java 8+)</commons.release.desc> <commons.rc.version>RC1</commons.rc.version> <!-- japicmp baseline: compare the API against the previous release. --> - <commons.bc.version>0.1.0</commons.bc.version> + <commons.bc.version>0.1.1</commons.bc.version> <commons.release.next>0.1.2</commons.release.next> <commons.componentid>copernik-xml-factory</commons.componentid> <commons.packageId>xml.factory</commons.packageId>
