From 0da18ab6173e9aebc6b520f61c728eb9f1032063 Mon Sep 17 00:00:00 2001 From: "sumup-bot[bot]" <241716704+sumup-bot[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 12:37:07 +0000 Subject: [PATCH 1/2] release: 0.0.7 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ VERSION | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b68e780..07194f6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.6" + ".": "0.0.7" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b99fd7..2e0d24f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.0.7](https://github.com/sumup/sumup-java/compare/v0.0.6...v0.0.7) (2026-02-26) + + +### Features + +* handle additional properties ([#38](https://github.com/sumup/sumup-java/issues/38)) ([c7b9894](https://github.com/sumup/sumup-java/commit/c7b9894f82d85982090e37eafcc7eccf27120ff4)) +* respect readonly fields ([#32](https://github.com/sumup/sumup-java/issues/32)) ([3438873](https://github.com/sumup/sumup-java/commit/34388735a2ea553dfa1d6aec04a12ba46ecbaa85)) +* update to latest openapi specs ([edcc8dc](https://github.com/sumup/sumup-java/commit/edcc8dc864c5a0ce074530619477c3291ecedd85)) + + +### Bug Fixes + +* readme maven badge ([#23](https://github.com/sumup/sumup-java/issues/23)) ([74d87c5](https://github.com/sumup/sumup-java/commit/74d87c57337685061a2d78a90c811a4c038ca4b9)) +* runtime header value ([02be806](https://github.com/sumup/sumup-java/commit/02be806fdd53a4c9ba1a6a94618998e907b6dfc6)) +* tests ([b812054](https://github.com/sumup/sumup-java/commit/b8120544052db932f409161f8f4cc981717d238f)) + ## [0.0.6](https://github.com/sumup/sumup-java/compare/v0.0.5...v0.0.6) (2026-01-20) diff --git a/VERSION b/VERSION index 1750564..5a5831a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.6 +0.0.7 From 7cbca4ae3fa98d99b2a78e16bcf9bb31c4761fb7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 12:37:21 +0000 Subject: [PATCH 2/2] chore: update README dependency versions --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a764fb5..cc003b2 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add the dependency in your `build.gradle.kts` file: ```kotlin dependencies { - implementation("com.sumup:sumup-sdk:0.0.6") + implementation("com.sumup:sumup-sdk:0.0.7") } ``` @@ -31,7 +31,7 @@ Add the dependency in your `build.gradle` file: ```groovy dependencies { - implementation 'com.sumup:sumup-sdk:0.0.6' + implementation 'com.sumup:sumup-sdk:0.0.7' } ``` @@ -43,7 +43,7 @@ Add the dependency in your `pom.xml` file: com.sumup sumup-sdk - 0.0.6 + 0.0.7 ```