Increment package version after release of azure-identity (#3236)

This commit is contained in:
Azure SDK Bot 2022-01-13 11:18:55 -08:00 committed by GitHub
parent 13e23487d0
commit 47a43d2a0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 3 deletions

View File

@ -1,5 +1,15 @@
# Release History
## 1.2.0-beta.1 (Unreleased)
### Features Added
### Breaking Changes
### Bugs Fixed
### Other Changes
## 1.1.1 (2022-01-11)
### Bugs Fixed

View File

@ -11,9 +11,9 @@
#include <cstdint>
#define AZURE_IDENTITY_VERSION_MAJOR 1
#define AZURE_IDENTITY_VERSION_MINOR 1
#define AZURE_IDENTITY_VERSION_PATCH 1
#define AZURE_IDENTITY_VERSION_PRERELEASE ""
#define AZURE_IDENTITY_VERSION_MINOR 2
#define AZURE_IDENTITY_VERSION_PATCH 0
#define AZURE_IDENTITY_VERSION_PRERELEASE "beta.1"
#define AZURE_IDENTITY_VERSION_ITOA_HELPER(i) #i
#define AZURE_IDENTITY_VERSION_ITOA(i) AZURE_IDENTITY_VERSION_ITOA_HELPER(i)