From d2b25b8e55349508cc8bab94cb2b887d99c67905 Mon Sep 17 00:00:00 2001 From: Clement Escoffier Date: Wed, 28 Aug 2024 14:34:55 +0200 Subject: [PATCH 1/2] Prepare release 2.7.0 --- .github/project.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/project.yml b/.github/project.yml index 7f73c4f8..a0540de8 100644 --- a/.github/project.yml +++ b/.github/project.yml @@ -1,4 +1,4 @@ name: SmallRye Stork release: - current-version: 2.6.0 - next-version: 2.7.0-SNAPSHOT + current-version: 2.7.0 + next-version: 2.7.1-SNAPSHOT From cb452caf18310fe9a2c5f6fbbf63525e7bf2effb Mon Sep 17 00:00:00 2001 From: Clement Escoffier Date: Wed, 28 Aug 2024 14:45:16 +0200 Subject: [PATCH 2/2] Update API breakage justification --- pom.xml | 1 + test-utils/revapi.json | 20 +++++++++++++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 735c9ca6..04805254 100644 --- a/pom.xml +++ b/pom.xml @@ -313,6 +313,7 @@ ${revapi.skip} false + 2.6.1 diff --git a/test-utils/revapi.json b/test-utils/revapi.json index eae96de7..9976478a 100644 --- a/test-utils/revapi.json +++ b/test-utils/revapi.json @@ -24,7 +24,25 @@ "criticality" : "highlight", "minSeverity" : "POTENTIALLY_BREAKING", "minCriticality" : "documented", - "differences" : [ ] + "differences" : [ + + { + "ignore": true, + "code": "java.annotation.removed", + "old": "class io.smallrye.stork.test.TestServiceRegistrarProvider", + "new": "class io.smallrye.stork.test.TestServiceRegistrarProvider", + "annotation": "@io.smallrye.stork.api.config.ServiceDiscoveryAttributes({@io.smallrye.stork.api.config.ServiceDiscoveryAttribute(name = \"one\", description = \"no description\"), @io.smallrye.stork.api.config.ServiceDiscoveryAttribute(name = \"two\", description = \"no description\")})", + "justification": "New registrar API" + }, + { + "ignore": true, + "code": "java.annotation.added", + "old": "class io.smallrye.stork.test.TestServiceRegistrarProvider", + "new": "class io.smallrye.stork.test.TestServiceRegistrarProvider", + "annotation": "@io.smallrye.stork.api.config.ServiceRegistrarAttributes({@io.smallrye.stork.api.config.ServiceRegistrarAttribute(name = \"one\", description = \"no description\"), @io.smallrye.stork.api.config.ServiceRegistrarAttribute(name = \"two\", description = \"no description\")})", + "justification": "New registrar API" + } + ] } }, { "extension" : "revapi.reporter.json",