From be8d52fd876324f6253b5b97da29f6f80688d511 Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Mon, 6 May 2024 17:13:23 -0700 Subject: [PATCH] Release version 1.2.0 --- CHANGELOG.md | 4 ++++ index.ts | 2 +- package.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fb9479..e323e2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Version 1.2.0 +- Incorporate changes for App Store Server API v1.11 and App Store Server Notifications v2.11 [https://github.com/apple/app-store-server-library-node/pull/132] +- Various documentation and quality of life improvements, including contributions from @yidinghan + ## Version 1.1.0 - Support App Store Server Notifications v2.10 [https://github.com/apple/app-store-server-library-node/pull/107] - Require appAppleId in SignedDataVerifier for the Production environment [https://github.com/apple/app-store-server-library-node/pull/86] diff --git a/index.ts b/index.ts index 6ba276f..551efa5 100644 --- a/index.ts +++ b/index.ts @@ -82,7 +82,7 @@ export class AppStoreServerAPIClient { private static PRODUCTION_URL = "https://api.storekit.itunes.apple.com"; private static SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com"; private static LOCAL_TESTING_URL = "https://local-testing-base-url"; - private static USER_AGENT = "app-store-server-library/node/1.1.0"; + private static USER_AGENT = "app-store-server-library/node/1.2.0"; private issuerId: string private keyId: string diff --git a/package.json b/package.json index be0a46c..5f60ff7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@apple/app-store-server-library", - "version": "1.1.0", + "version": "1.2.0", "description": "The App Store Server Library", "main": "dist/index.js", "keywords": [],