From a30ce8aec3d60a1bd841ea7361ca8c08700350fd Mon Sep 17 00:00:00 2001 From: "sumup-release-bot[bot]" <241716704+sumup-release-bot[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 12:40:16 +0000 Subject: [PATCH 1/2] release: 0.0.9 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ VERSION | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 493bd4e..07509b4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.8" + ".": "0.0.9" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f93121..ba721ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.0.9](https://github.com/sumup/sumup-java/compare/v0.0.8...v0.0.9) (2026-07-21) + + +### Chores + +* **deps:** bump actions/setup-java from 5.5.0 to 5.6.0 ([#121](https://github.com/sumup/sumup-java/issues/121)) ([ab625c9](https://github.com/sumup/sumup-java/commit/ab625c93a6117c17af605e7538f245be01e5d702)) +* **deps:** bump com.fasterxml.jackson:jackson-bom in the jackson group ([#117](https://github.com/sumup/sumup-java/issues/117)) ([aa69469](https://github.com/sumup/sumup-java/commit/aa694690d5b180d5a735aac3256f82c617d1064c)) +* **deps:** bump github.com/lmittmann/tint in /codegen ([#118](https://github.com/sumup/sumup-java/issues/118)) ([15c020e](https://github.com/sumup/sumup-java/commit/15c020e4a348ed6f6eef470e5138762cfe00a023)) +* **deps:** bump github.com/pb33f/libopenapi in /codegen ([#120](https://github.com/sumup/sumup-java/issues/120)) ([6340275](https://github.com/sumup/sumup-java/commit/6340275699f07254909cdfa5a360baaf2d3cb090)) +* **deps:** bump org.junit.jupiter:junit-jupiter from 6.1.1 to 6.1.2 ([#119](https://github.com/sumup/sumup-java/issues/119)) ([390c613](https://github.com/sumup/sumup-java/commit/390c613e5471ce0996db30fc5688759168d54c79)) + ## [0.0.8](https://github.com/sumup/sumup-java/compare/v0.0.7...v0.0.8) (2026-07-17) diff --git a/VERSION b/VERSION index d169b2f..c5d54ec 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.8 +0.0.9 From 86b8306c314eed03c36ba903665f311aaef03c37 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 12:40:31 +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 922cf60..911a0a2 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.8") + implementation("com.sumup:sumup-sdk:0.0.9") } ``` @@ -31,7 +31,7 @@ Add the dependency in your `build.gradle` file: ```groovy dependencies { - implementation 'com.sumup:sumup-sdk:0.0.8' + implementation 'com.sumup:sumup-sdk:0.0.9' } ``` @@ -43,7 +43,7 @@ Add the dependency in your `pom.xml` file: com.sumup sumup-sdk - 0.0.8 + 0.0.9 ```