diff --git a/sdk/notificationhubs/notification-hubs/CHANGELOG.md b/sdk/notificationhubs/notification-hubs/CHANGELOG.md index a3812380da8c..1a4d20419d2e 100644 --- a/sdk/notificationhubs/notification-hubs/CHANGELOG.md +++ b/sdk/notificationhubs/notification-hubs/CHANGELOG.md @@ -1,5 +1,15 @@ # Release History +## 1.2.2 (Unreleased) + +### Features Added + +### Breaking Changes + +### Bugs Fixed + +### Other Changes + ## 1.2.1 (2024-04-25) ### Bugs Fixed diff --git a/sdk/notificationhubs/notification-hubs/package.json b/sdk/notificationhubs/notification-hubs/package.json index b86a9f8c858a..8a64be7a91ea 100644 --- a/sdk/notificationhubs/notification-hubs/package.json +++ b/sdk/notificationhubs/notification-hubs/package.json @@ -1,6 +1,6 @@ { "name": "@azure/notification-hubs", - "version": "1.2.1", + "version": "1.2.2", "description": "Azure Notification Hubs SDK for JavaScript", "sdk-type": "client", "main": "./dist/commonjs/index.js", diff --git a/sdk/notificationhubs/notification-hubs/src/utils/constants.ts b/sdk/notificationhubs/notification-hubs/src/utils/constants.ts index 02c7067fab51..030277d3ad55 100644 --- a/sdk/notificationhubs/notification-hubs/src/utils/constants.ts +++ b/sdk/notificationhubs/notification-hubs/src/utils/constants.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -export const SDK_VERSION: string = "1.2.1"; +export const SDK_VERSION: string = "1.2.2"; export const JSON_CONTENT_TYPE = "application/json;charset=utf-8"; export const XML_CONTENT_TYPE = "application/xml";