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 e646abcba85fedbb8b08d7ad4e3f386f08215861 Author: Piotr P. Karwasz <[email protected]> AuthorDate: Thu Jun 11 09:30:24 2026 +0200 Prepare release 0.1.1 (#24) This change sets the project version to 0.1.1 across the Maven build and the Android instrumentation tests, and points the next development cycle at 0.1.2. Now that a prior release exists to compare against, it also re-enables the japicmp regression check: the backward-compatibility baseline is set to 0.1.0 and the commons-parent japicmp profile is activated by adding its src/site/resources/profile.japicmp marker. The check reports no API change between 0.1.0 and 0.1.1. Assisted-By: Claude Opus 4.8 (1M context) <[email protected]> --- android-tests/build.gradle.kts | 2 +- pom.xml | 11 +++++------ src/site/resources/profile.japicmp | 2 ++ 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/android-tests/build.gradle.kts b/android-tests/build.gradle.kts index f76d3a1..fc90d0d 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.2.0-SNAPSHOT" +val libraryVersion = "0.1.1" val libraryJar = rootProject.file("../target/copernik-xml-factory-${libraryVersion}.jar") android { diff --git a/pom.xml b/pom.xml index f09f841..8540c3b 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ </parent> <groupId>eu.copernik</groupId> <artifactId>copernik-xml-factory</artifactId> - <version>0.2.0-SNAPSHOT</version> + <version>0.1.1</version> <name>Copernik XML Factory</name> <url>https://github.com/copernik-eu/copernik-xml-factory/</url> <inceptionYear>2026</inceptionYear> @@ -71,13 +71,12 @@ <properties> <!-- Release-related properties --> - <commons.release.version>0.1.0</commons.release.version> + <commons.release.version>0.1.1</commons.release.version> <commons.release.desc>(Java 8+)</commons.release.desc> <commons.rc.version>RC1</commons.rc.version> - <!-- Not relevant for first release: reenable after 0.1.0 and reenable japicmp - <commons.bc.version>0.1.0</commons.bc.version> --> - <japicmp.skip>true</japicmp.skip> - <commons.release.next>0.1.1</commons.release.next> + <!-- japicmp baseline: compare the API against the previous release. --> + <commons.bc.version>0.1.0</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> <commons.module.name>eu.copernik.xml.factory</commons.module.name> diff --git a/src/site/resources/profile.japicmp b/src/site/resources/profile.japicmp new file mode 100644 index 0000000..88dc53f --- /dev/null +++ b/src/site/resources/profile.japicmp @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2026 Piotr P. Karwasz <[email protected]> +SPDX-License-Identifier: Apache-2.0
