From 831b0f16dfebd4041ed2e5bcfa53527b9612cde0 Mon Sep 17 00:00:00 2001 From: Martin Mois Date: Wed, 27 May 2026 22:05:06 +0200 Subject: [PATCH 1/4] Add release notes for version 0.26.1 --- src/site/markdown/ReleaseNotes.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/site/markdown/ReleaseNotes.md b/src/site/markdown/ReleaseNotes.md index 0fa00c86..5af68ee1 100644 --- a/src/site/markdown/ReleaseNotes.md +++ b/src/site/markdown/ReleaseNotes.md @@ -3,6 +3,10 @@ Versions The following versions of japicmp are available: +0.26.1 (2026-05-27) +------------------- +* New change METHOD_RETURN_TYPE_COVARIANT_CHANGED [#522](https://github.com/siom79/japicmp/issues/522) + 0.26.0 (2026-05-21) ------------------- * No NPE when using Markdown-Processsor with byte-based archive [#516](https://github.com/siom79/japicmp/issues/516) From a11fb26ad11c495b3c647a7acfe2c44d7fd03a1b Mon Sep 17 00:00:00 2001 From: siom79 Date: Wed, 27 May 2026 20:06:00 +0000 Subject: [PATCH 2/4] upgraded version in *.md files to 0.26.1 --- README.md | 4 ++-- src/site/markdown/CliTool.md | 6 +++--- src/site/markdown/MavenPlugin.md | 12 ++++++------ src/site/markdown/index.md | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index b8356f2d..e87e2c25 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ japicmp is available in the Maven Central Repository: com.github.siom79.japicmp japicmp - 0.26.0 + 0.26.1 ``` A maven plugin allows you to integrate the checks into your build: @@ -27,7 +27,7 @@ A maven plugin allows you to integrate the checks into your build: com.github.siom79.japicmp japicmp-maven-plugin - 0.26.0 + 0.26.1 diff --git a/src/site/markdown/CliTool.md b/src/site/markdown/CliTool.md index e463a7e6..9e5a73b4 100644 --- a/src/site/markdown/CliTool.md +++ b/src/site/markdown/CliTool.md @@ -147,18 +147,18 @@ When your library implements interfaces or extends classes from other libraries compatibility you must specify the classpath for the two different versions: ```bash -java -jar japicmp-0.26.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar +java -jar japicmp-0.26.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar --old-classpath other-library-v1.jar ``` In case the classpath for both versions did not change, you can add the library using the standard way: ```bash -java -cp japicmp-0.26.0-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar +java -cp japicmp-0.26.1-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar ``` For reporting purposes you can also provide more than one jar as old or new version(s): ```bash -java -jar japicmp-0.26.0-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar +java -jar japicmp-0.26.1-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar ``` diff --git a/src/site/markdown/MavenPlugin.md b/src/site/markdown/MavenPlugin.md index 9b881128..54e201aa 100644 --- a/src/site/markdown/MavenPlugin.md +++ b/src/site/markdown/MavenPlugin.md @@ -10,7 +10,7 @@ The maven plugin can be included in the pom.xml file of your artifact in the fol com.github.siom79.japicmp japicmp-maven-plugin - 0.26.0 + 0.26.1 @@ -46,7 +46,7 @@ You can also leave out the <oldVersion> and <newVersion> elements: com.github.siom79.japicmp japicmp-maven-plugin - 0.26.0 + 0.26.1 @@ -70,7 +70,7 @@ to configure the latest version more precisely (e.g. only GA versions), then you com.github.siom79.japicmp japicmp-maven-plugin - 0.26.0 + 0.26.1 \d+\.\d+\.\d+\.GA @@ -116,13 +116,13 @@ An advanced configuration can utilize the following parameters: com.github.siom79.japicmp japicmp-maven-plugin - 0.26.0 + 0.26.1 japicmp japicmp-test-v1 - 0.26.0 + 0.26.1 jar @@ -383,7 +383,7 @@ Alternatively it can be used inside the `` tag in order to be invoke com.github.siom79.japicmp japicmp-maven-plugin - 0.26.0 + 0.26.1 diff --git a/src/site/markdown/index.md b/src/site/markdown/index.md index 8c0aedaa..bed63396 100644 --- a/src/site/markdown/index.md +++ b/src/site/markdown/index.md @@ -4,7 +4,7 @@ japicmp japicmp is a tool to compare two versions of a jar archive: ```bash -java -jar japicmp-0.26.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar +java -jar japicmp-0.26.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar ``` It can also be used as a library: @@ -21,7 +21,7 @@ japicmp is available in the Maven Central Repository: com.github.siom79.japicmp japicmp - 0.26.0 + 0.26.1 ``` @@ -31,7 +31,7 @@ A maven plugin allows you to integrate the checks into your build: com.github.siom79.japicmp japicmp-maven-plugin - 0.26.0 + 0.26.1 From 930348778b6ae9770007f10bf96fbeb900c17f16 Mon Sep 17 00:00:00 2001 From: siom79 Date: Wed, 27 May 2026 20:10:07 +0000 Subject: [PATCH 3/4] [maven-release-plugin] prepare release japicmp-base-0.26.1 --- japicmp-ant-task/pom.xml | 2 +- japicmp-maven-plugin/pom.xml | 2 +- japicmp-testbase/japicmp-test-ant-task/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-bundle-v1/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-bundle-v2/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-bundle/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-classifier/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-guava/pom.xml | 2 +- .../japicmp-test-maven-plugin-ignoremissingartifact/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-japicmp/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-packaging/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-pom-module/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../japicmp-test-maven-plugin-userproperty/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin/pom.xml | 2 +- .../japicmp-test-service-impl-v1/pom.xml | 2 +- .../japicmp-test-service-impl-v2/pom.xml | 2 +- .../japicmp-test-service-test/pom.xml | 2 +- .../japicmp-test-service-v1/pom.xml | 2 +- .../japicmp-test-service-v2/pom.xml | 2 +- japicmp-testbase/japicmp-test-service-impl-base/pom.xml | 2 +- japicmp-testbase/japicmp-test-v1/pom.xml | 2 +- japicmp-testbase/japicmp-test-v2/pom.xml | 2 +- japicmp-testbase/japicmp-test-vx-client/pom.xml | 2 +- japicmp-testbase/japicmp-test/pom.xml | 2 +- japicmp-testbase/japicmp-test2-v1/pom.xml | 2 +- japicmp-testbase/japicmp-test2-v2/pom.xml | 2 +- japicmp-testbase/pom.xml | 2 +- japicmp/pom.xml | 2 +- pom.xml | 4 ++-- 31 files changed, 32 insertions(+), 32 deletions(-) diff --git a/japicmp-ant-task/pom.xml b/japicmp-ant-task/pom.xml index f9fb4376..9b5b8afd 100644 --- a/japicmp-ant-task/pom.xml +++ b/japicmp-ant-task/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-base - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-maven-plugin/pom.xml b/japicmp-maven-plugin/pom.xml index b5368f62..6591338f 100644 --- a/japicmp-maven-plugin/pom.xml +++ b/japicmp-maven-plugin/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-base - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-ant-task/pom.xml b/japicmp-testbase/japicmp-test-ant-task/pom.xml index 7c180f1d..3efe9160 100644 --- a/japicmp-testbase/japicmp-test-ant-task/pom.xml +++ b/japicmp-testbase/japicmp-test-ant-task/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-bundle-v1/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-bundle-v1/pom.xml index 75811715..7d33bd00 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-bundle-v1/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-bundle-v1/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 japicmp-testbundle-v1 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-bundle-v2/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-bundle-v2/pom.xml index ddf96a03..fe025561 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-bundle-v2/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-bundle-v2/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 japicmp-testbundle-v2 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-bundle/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-bundle/pom.xml index fd9e140a..e59ab3af 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-bundle/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-bundle/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-classifier/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-classifier/pom.xml index 7cd8a680..c2eeff80 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-classifier/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-classifier/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-guava/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-guava/pom.xml index 1a17a728..beb0498d 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-guava/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-guava/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 japicmp-test-maven-plugin-guava diff --git a/japicmp-testbase/japicmp-test-maven-plugin-ignoremissingartifact/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-ignoremissingartifact/pom.xml index 7ad4d8ef..0f4640db 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-ignoremissingartifact/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-ignoremissingartifact/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-japicmp/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-japicmp/pom.xml index a4146502..5b532305 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-japicmp/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-japicmp/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 japicmp-test-maven-plugin-japicmp diff --git a/japicmp-testbase/japicmp-test-maven-plugin-packaging/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-packaging/pom.xml index 34b8d71b..65a0ce76 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-packaging/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-packaging/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 war diff --git a/japicmp-testbase/japicmp-test-maven-plugin-pom-module/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-pom-module/pom.xml index 3ab60323..0376b3f3 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-pom-module/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-pom-module/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact-test/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact-test/pom.xml index 3dbadcd1..60ae5a1d 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact-test/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact-test/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact/pom.xml index ccf7e3b9..ae3e53ed 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-userproperty/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-userproperty/pom.xml index e73ed3bd..9535288d 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-userproperty/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-userproperty/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin/pom.xml index e06ed185..ad8dd89f 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v1/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v1/pom.xml index 3e1c055e..5e33ca36 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v1/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v1/pom.xml @@ -3,7 +3,7 @@ japicmp-test-service-impl-base com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v2/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v2/pom.xml index 671e62fa..8b97904d 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v2/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v2/pom.xml @@ -3,7 +3,7 @@ japicmp-test-service-impl-base com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-test/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-test/pom.xml index 63d188d4..f78aaefe 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-test/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-test/pom.xml @@ -3,7 +3,7 @@ japicmp-test-service-impl-base com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v1/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v1/pom.xml index 3a84e9f2..f52ca4a3 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v1/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v1/pom.xml @@ -3,7 +3,7 @@ japicmp-test-service-impl-base com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v2/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v2/pom.xml index 10795a0a..66e94d6f 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v2/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v2/pom.xml @@ -3,7 +3,7 @@ japicmp-test-service-impl-base com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/pom.xml index 035f1e6c..5ab16270 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test-v1/pom.xml b/japicmp-testbase/japicmp-test-v1/pom.xml index 0cf2209a..eb162f10 100644 --- a/japicmp-testbase/japicmp-test-v1/pom.xml +++ b/japicmp-testbase/japicmp-test-v1/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 japicmp-test-v1 diff --git a/japicmp-testbase/japicmp-test-v2/pom.xml b/japicmp-testbase/japicmp-test-v2/pom.xml index 6e909869..3aeb2862 100644 --- a/japicmp-testbase/japicmp-test-v2/pom.xml +++ b/japicmp-testbase/japicmp-test-v2/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 japicmp-test-v2 diff --git a/japicmp-testbase/japicmp-test-vx-client/pom.xml b/japicmp-testbase/japicmp-test-vx-client/pom.xml index 7fb3210a..ee25c4f9 100644 --- a/japicmp-testbase/japicmp-test-vx-client/pom.xml +++ b/japicmp-testbase/japicmp-test-vx-client/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test/pom.xml b/japicmp-testbase/japicmp-test/pom.xml index 6a35ca46..4244b798 100644 --- a/japicmp-testbase/japicmp-test/pom.xml +++ b/japicmp-testbase/japicmp-test/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1-SNAPSHOT + 0.26.1 japicmp-test diff --git a/japicmp-testbase/japicmp-test2-v1/pom.xml b/japicmp-testbase/japicmp-test2-v1/pom.xml index fb4cb693..70ff0a41 100644 --- a/japicmp-testbase/japicmp-test2-v1/pom.xml +++ b/japicmp-testbase/japicmp-test2-v1/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/japicmp-test2-v2/pom.xml b/japicmp-testbase/japicmp-test2-v2/pom.xml index a3f13814..f9a28c0b 100644 --- a/japicmp-testbase/japicmp-test2-v2/pom.xml +++ b/japicmp-testbase/japicmp-test2-v2/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1-SNAPSHOT + 0.26.1 4.0.0 diff --git a/japicmp-testbase/pom.xml b/japicmp-testbase/pom.xml index 5f24ebed..6de116eb 100644 --- a/japicmp-testbase/pom.xml +++ b/japicmp-testbase/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-base - 0.26.1-SNAPSHOT + 0.26.1 japicmp-testbase diff --git a/japicmp/pom.xml b/japicmp/pom.xml index daefc835..f092e206 100644 --- a/japicmp/pom.xml +++ b/japicmp/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-base - 0.26.1-SNAPSHOT + 0.26.1 japicmp diff --git a/pom.xml b/pom.xml index 21fdf2a9..9f7f4df0 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-base - 0.26.1-SNAPSHOT + 0.26.1 pom japicmp-base @@ -447,7 +447,7 @@ scm:git:https://github.com/${github.account}/${github.project}.git scm:git:https://github.com/${github.account}/${github.project}.git https://github.com/${github.account}/${github.project}.git - japicmp-base-0.25.2 + japicmp-base-0.26.1 From 2d326a4d9cc36e36570c5d6ba794b9951af8d0f5 Mon Sep 17 00:00:00 2001 From: siom79 Date: Wed, 27 May 2026 20:10:09 +0000 Subject: [PATCH 4/4] [maven-release-plugin] prepare for next development iteration --- japicmp-ant-task/pom.xml | 2 +- japicmp-maven-plugin/pom.xml | 2 +- japicmp-testbase/japicmp-test-ant-task/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-bundle-v1/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-bundle-v2/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-bundle/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-classifier/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-guava/pom.xml | 2 +- .../japicmp-test-maven-plugin-ignoremissingartifact/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-japicmp/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-packaging/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin-pom-module/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../japicmp-test-maven-plugin-userproperty/pom.xml | 2 +- japicmp-testbase/japicmp-test-maven-plugin/pom.xml | 2 +- .../japicmp-test-service-impl-v1/pom.xml | 2 +- .../japicmp-test-service-impl-v2/pom.xml | 2 +- .../japicmp-test-service-test/pom.xml | 2 +- .../japicmp-test-service-v1/pom.xml | 2 +- .../japicmp-test-service-v2/pom.xml | 2 +- japicmp-testbase/japicmp-test-service-impl-base/pom.xml | 2 +- japicmp-testbase/japicmp-test-v1/pom.xml | 2 +- japicmp-testbase/japicmp-test-v2/pom.xml | 2 +- japicmp-testbase/japicmp-test-vx-client/pom.xml | 2 +- japicmp-testbase/japicmp-test/pom.xml | 2 +- japicmp-testbase/japicmp-test2-v1/pom.xml | 2 +- japicmp-testbase/japicmp-test2-v2/pom.xml | 2 +- japicmp-testbase/pom.xml | 2 +- japicmp/pom.xml | 2 +- pom.xml | 4 ++-- 31 files changed, 32 insertions(+), 32 deletions(-) diff --git a/japicmp-ant-task/pom.xml b/japicmp-ant-task/pom.xml index 9b5b8afd..82198cb9 100644 --- a/japicmp-ant-task/pom.xml +++ b/japicmp-ant-task/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-base - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-maven-plugin/pom.xml b/japicmp-maven-plugin/pom.xml index 6591338f..c0868122 100644 --- a/japicmp-maven-plugin/pom.xml +++ b/japicmp-maven-plugin/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-base - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-ant-task/pom.xml b/japicmp-testbase/japicmp-test-ant-task/pom.xml index 3efe9160..f58178d9 100644 --- a/japicmp-testbase/japicmp-test-ant-task/pom.xml +++ b/japicmp-testbase/japicmp-test-ant-task/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-bundle-v1/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-bundle-v1/pom.xml index 7d33bd00..47bc5071 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-bundle-v1/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-bundle-v1/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT japicmp-testbundle-v1 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-bundle-v2/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-bundle-v2/pom.xml index fe025561..5d7f5f5d 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-bundle-v2/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-bundle-v2/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT japicmp-testbundle-v2 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-bundle/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-bundle/pom.xml index e59ab3af..d4cff1fd 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-bundle/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-bundle/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-classifier/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-classifier/pom.xml index c2eeff80..93420569 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-classifier/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-classifier/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-guava/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-guava/pom.xml index beb0498d..b030b3e8 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-guava/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-guava/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT japicmp-test-maven-plugin-guava diff --git a/japicmp-testbase/japicmp-test-maven-plugin-ignoremissingartifact/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-ignoremissingartifact/pom.xml index 0f4640db..6956e49d 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-ignoremissingartifact/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-ignoremissingartifact/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-japicmp/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-japicmp/pom.xml index 5b532305..58baf26b 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-japicmp/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-japicmp/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT japicmp-test-maven-plugin-japicmp diff --git a/japicmp-testbase/japicmp-test-maven-plugin-packaging/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-packaging/pom.xml index 65a0ce76..f0ae72df 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-packaging/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-packaging/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 war diff --git a/japicmp-testbase/japicmp-test-maven-plugin-pom-module/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-pom-module/pom.xml index 0376b3f3..faf0db39 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-pom-module/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-pom-module/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact-test/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact-test/pom.xml index 60ae5a1d..bd428437 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact-test/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact-test/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact/pom.xml index ae3e53ed..5e62d512 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-post-analysis-script-artifact/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin-userproperty/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin-userproperty/pom.xml index 9535288d..2b7e8ee0 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin-userproperty/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin-userproperty/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-maven-plugin/pom.xml b/japicmp-testbase/japicmp-test-maven-plugin/pom.xml index ad8dd89f..9545ed4e 100644 --- a/japicmp-testbase/japicmp-test-maven-plugin/pom.xml +++ b/japicmp-testbase/japicmp-test-maven-plugin/pom.xml @@ -3,7 +3,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v1/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v1/pom.xml index 5e33ca36..188b45d0 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v1/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v1/pom.xml @@ -3,7 +3,7 @@ japicmp-test-service-impl-base com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v2/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v2/pom.xml index 8b97904d..64f5bfd3 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v2/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-impl-v2/pom.xml @@ -3,7 +3,7 @@ japicmp-test-service-impl-base com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-test/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-test/pom.xml index f78aaefe..a7ede38d 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-test/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-test/pom.xml @@ -3,7 +3,7 @@ japicmp-test-service-impl-base com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v1/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v1/pom.xml index f52ca4a3..aa1b4015 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v1/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v1/pom.xml @@ -3,7 +3,7 @@ japicmp-test-service-impl-base com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v2/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v2/pom.xml index 66e94d6f..afea5cb1 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v2/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/japicmp-test-service-v2/pom.xml @@ -3,7 +3,7 @@ japicmp-test-service-impl-base com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-service-impl-base/pom.xml b/japicmp-testbase/japicmp-test-service-impl-base/pom.xml index 5ab16270..d94a9853 100644 --- a/japicmp-testbase/japicmp-test-service-impl-base/pom.xml +++ b/japicmp-testbase/japicmp-test-service-impl-base/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test-v1/pom.xml b/japicmp-testbase/japicmp-test-v1/pom.xml index eb162f10..b4e1059a 100644 --- a/japicmp-testbase/japicmp-test-v1/pom.xml +++ b/japicmp-testbase/japicmp-test-v1/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT japicmp-test-v1 diff --git a/japicmp-testbase/japicmp-test-v2/pom.xml b/japicmp-testbase/japicmp-test-v2/pom.xml index 3aeb2862..9c7c955d 100644 --- a/japicmp-testbase/japicmp-test-v2/pom.xml +++ b/japicmp-testbase/japicmp-test-v2/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT japicmp-test-v2 diff --git a/japicmp-testbase/japicmp-test-vx-client/pom.xml b/japicmp-testbase/japicmp-test-vx-client/pom.xml index ee25c4f9..35e969d2 100644 --- a/japicmp-testbase/japicmp-test-vx-client/pom.xml +++ b/japicmp-testbase/japicmp-test-vx-client/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test/pom.xml b/japicmp-testbase/japicmp-test/pom.xml index 4244b798..a946425d 100644 --- a/japicmp-testbase/japicmp-test/pom.xml +++ b/japicmp-testbase/japicmp-test/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-testbase - 0.26.1 + 0.26.2-SNAPSHOT japicmp-test diff --git a/japicmp-testbase/japicmp-test2-v1/pom.xml b/japicmp-testbase/japicmp-test2-v1/pom.xml index 70ff0a41..80599b8e 100644 --- a/japicmp-testbase/japicmp-test2-v1/pom.xml +++ b/japicmp-testbase/japicmp-test2-v1/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/japicmp-test2-v2/pom.xml b/japicmp-testbase/japicmp-test2-v2/pom.xml index f9a28c0b..feb380f4 100644 --- a/japicmp-testbase/japicmp-test2-v2/pom.xml +++ b/japicmp-testbase/japicmp-test2-v2/pom.xml @@ -3,7 +3,7 @@ japicmp-testbase com.github.siom79.japicmp - 0.26.1 + 0.26.2-SNAPSHOT 4.0.0 diff --git a/japicmp-testbase/pom.xml b/japicmp-testbase/pom.xml index 6de116eb..250cac9e 100644 --- a/japicmp-testbase/pom.xml +++ b/japicmp-testbase/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-base - 0.26.1 + 0.26.2-SNAPSHOT japicmp-testbase diff --git a/japicmp/pom.xml b/japicmp/pom.xml index f092e206..45ce658c 100644 --- a/japicmp/pom.xml +++ b/japicmp/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-base - 0.26.1 + 0.26.2-SNAPSHOT japicmp diff --git a/pom.xml b/pom.xml index 9f7f4df0..aeaedd3c 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.github.siom79.japicmp japicmp-base - 0.26.1 + 0.26.2-SNAPSHOT pom japicmp-base @@ -447,7 +447,7 @@ scm:git:https://github.com/${github.account}/${github.project}.git scm:git:https://github.com/${github.account}/${github.project}.git https://github.com/${github.account}/${github.project}.git - japicmp-base-0.26.1 + japicmp-base-0.25.2