From 67a9c49e4520ce079264537f4afa3d9e9a062da9 Mon Sep 17 00:00:00 2001 From: "sumup-bot[bot]" <241716704+sumup-bot[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 10:57:55 +0000 Subject: [PATCH 1/2] release: 0.0.8 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ VERSION | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 07194f6..493bd4e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.7" + ".": "0.0.8" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 33abc56..40f8ba8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.0.8](https://github.com/sumup/sumup-java/compare/v0.0.7...v0.0.8) (2026-04-26) + + +### Features + +* **sdk:** improve method names ([#82](https://github.com/sumup/sumup-java/issues/82)) ([c93c8e8](https://github.com/sumup/sumup-java/commit/c93c8e85cebdbf7cdcb5d3f0c9d6346992efe3a8)) + + +### Bug Fixes + +* **codegen:** flatten allOf models and avoid inline enum parameter types ([#83](https://github.com/sumup/sumup-java/issues/83)) ([4d4269b](https://github.com/sumup/sumup-java/commit/4d4269be6ff92fc7581fbc76bb2bef8ccb3a23cf)) +* regenerate sdk ([a646abf](https://github.com/sumup/sumup-java/commit/a646abf453009ce78f55e86b7d992c92ce6068fd)) +* **sdk:** unwrap scalar record path parameters ([#80](https://github.com/sumup/sumup-java/issues/80)) ([bcb39f1](https://github.com/sumup/sumup-java/commit/bcb39f172c6b2b8d5ab8a77b1336f6fca823d9d9)) + + +### Chores + +* synced file(s) with sumup/apis ([#84](https://github.com/sumup/sumup-java/issues/84)) ([84d9cd1](https://github.com/sumup/sumup-java/commit/84d9cd1e97469ba9aa5811ef8a47ff784ae0d6f2)) + ## [0.0.7](https://github.com/sumup/sumup-java/compare/v0.0.6...v0.0.7) (2026-04-22) diff --git a/VERSION b/VERSION index 5a5831a..d169b2f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.7 +0.0.8 From 3ea44734a22525dd0a8a6e9427a7e0835aa563c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 10:58:07 +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 6ccbdca..922cf60 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.7") + implementation("com.sumup:sumup-sdk:0.0.8") } ``` @@ -31,7 +31,7 @@ Add the dependency in your `build.gradle` file: ```groovy dependencies { - implementation 'com.sumup:sumup-sdk:0.0.7' + implementation 'com.sumup:sumup-sdk:0.0.8' } ``` @@ -43,7 +43,7 @@ Add the dependency in your `pom.xml` file: com.sumup sumup-sdk - 0.0.7 + 0.0.8 ```