diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1b1cf39..734fe22 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "sdk": "0.0.5" + "sdk": "0.0.6" } diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index eb7e7d9..000740c 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.6](https://github.com/sumup/sumup-ts/compare/v0.0.5...v0.0.6) (2025-11-11) + + +### Bug Fixes + +* **sdk:** version header string ([ab9fdd5](https://github.com/sumup/sumup-ts/commit/ab9fdd5722de584545a19b8ac49d523edd92c223)) + ## [0.0.5](https://github.com/sumup/sumup-ts/compare/v0.0.4...v0.0.5) (2025-10-23) 0.0.5 brings the Merchants API, allowing access to multiple merchant accounts, depending on the authorization. For users that authenticate using SumUp's SSO you can now access any of the merchant accounts that they have membership in. For API keys the access is still restricted to the merchant account for which the API key was created. We are working on introducing more authentication options to make integrations that need to rely on multiple merchant accounts easier in the future. diff --git a/sdk/jsr.json b/sdk/jsr.json index 07c4e90..76d758c 100644 --- a/sdk/jsr.json +++ b/sdk/jsr.json @@ -1,6 +1,6 @@ { "name": "@sumup/sdk", - "version": "0.0.5", + "version": "0.0.6", "license": "Apache-2.0", "exports": "./src/index.ts", "include": [ diff --git a/sdk/package-lock.json b/sdk/package-lock.json index 3a3f809..41173a9 100644 --- a/sdk/package-lock.json +++ b/sdk/package-lock.json @@ -1,12 +1,12 @@ { "name": "@sumup/sdk", - "version": "0.0.5", + "version": "0.0.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@sumup/sdk", - "version": "0.0.5", + "version": "0.0.6", "license": "Apache-2.0", "devDependencies": { "@biomejs/biome": "^2.1.2", diff --git a/sdk/package.json b/sdk/package.json index b22c9d4..c4b3dcc 100644 --- a/sdk/package.json +++ b/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@sumup/sdk", - "version": "0.0.5", + "version": "0.0.6", "description": "The official TypeScript SDK for the SumUp API", "keywords": [ "nodejs", diff --git a/sdk/src/version.ts b/sdk/src/version.ts index f10eaac..6e61168 100644 --- a/sdk/src/version.ts +++ b/sdk/src/version.ts @@ -1 +1 @@ -export const VERSION = "0.0.5"; // x-release-please-version +export const VERSION = "0.0.6"; // x-release-please-version