From 8b6778218fcc03ae0eca6fb9c6bf629d44e99aab Mon Sep 17 00:00:00 2001 From: Ahson Khan Date: Tue, 8 Feb 2022 17:35:46 -0800 Subject: [PATCH] Update change log for main for February release, to release 1.3.0, with version update (#2087) * Update change log for main for February release * Add a note about azure storage blob being available from beta * Increment AddAzureSDKforC.cmake to 1.3.0 * Update az_version.h to 1.3.0. removing pre-release * Fix wording about beta release --- CHANGELOG.md | 15 +++++++++++++-- cmake-modules/AddAzureSDKforC.cmake | 2 +- sdk/inc/azure/core/az_version.h | 5 +++-- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41a3fd9305..0a22a29b6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,27 @@ # Release History -## 1.3.0-beta.2 (Unreleased) +## 1.3.0 (2022-02-08) ### Features Added +- Added a total bytes written field to the JSON writer. + ### Breaking Changes +- Compared to the previous 1.2.0 release, there are **no** breaking changes. +- Removed `az_storage_blobs.h`, which included some beta APIs for Azure Blob Storage such as `az_storage_blobs_blob_client()`. + - These will ship in a future release, and are still available from [the previous beta release](https://github.com/Azure/azure-sdk-for-c/releases/tag/1.3.0-beta.1). + ### Bugs Fixed - [[#2027]](https://github.com/Azure/azure-sdk-for-c/pull/2027) Update IoT user agent to append property name before property value in cases where a custom user agent was specified. +- [[#1885]](https://github.com/Azure/azure-sdk-for-c/pull/1885) Fix compilation error C4576 with C++ and MSVC 2019. (A community contribution, courtesy of _[hwmaier](https://github.com/hwmaier)_) -### Other Changes +### Acknowledgments + +Thank you to our developer community members who helped to make Azure SDK for C better with their contributions to this release: + +- Henrik Maier _([GitHub](https://github.com/hwmaier))_ ## 1.3.0-beta.1 (2021-11-09) diff --git a/cmake-modules/AddAzureSDKforC.cmake b/cmake-modules/AddAzureSDKforC.cmake index 795f20dec6..bb3e7699b3 100644 --- a/cmake-modules/AddAzureSDKforC.cmake +++ b/cmake-modules/AddAzureSDKforC.cmake @@ -17,7 +17,7 @@ include(FetchContent) FetchContent_Declare(azuresdkforc GIT_REPOSITORY https://github.com/Azure/azure-sdk-for-c.git - GIT_TAG 1.2.0) + GIT_TAG 1.3.0) FetchContent_GetProperties(azuresdkforc) if(NOT azuresdkforc_POPULATED) FetchContent_Populate(azuresdkforc) diff --git a/sdk/inc/azure/core/az_version.h b/sdk/inc/azure/core/az_version.h index 623b0605d1..14c1110a10 100644 --- a/sdk/inc/azure/core/az_version.h +++ b/sdk/inc/azure/core/az_version.h @@ -17,7 +17,7 @@ /// The version in string format used for telemetry following the `semver.org` standard /// (https://semver.org). -#define AZ_SDK_VERSION_STRING "1.3.0-beta.2" +#define AZ_SDK_VERSION_STRING "1.3.0" /// Major numeric identifier. #define AZ_SDK_VERSION_MAJOR 1 @@ -29,6 +29,7 @@ #define AZ_SDK_VERSION_PATCH 0 /// Optional pre-release identifier. SDK is in a pre-release state when present. -#define AZ_SDK_VERSION_PRERELEASE "beta.2" +#define AZ_SDK_VERSION_PRERELEASE +#undef AZ_SDK_VERSION_PRERELEASE #endif //_az_VERSION_H