Skip to content

Commit

Permalink
Update change log for main for February release, to release 1.3.0, wi…
Browse files Browse the repository at this point in the history
…th 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
  • Loading branch information
ahsonkhan committed Feb 9, 2022
1 parent 36a7257 commit 8b67782
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion cmake-modules/AddAzureSDKforC.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
5 changes: 3 additions & 2 deletions sdk/inc/azure/core/az_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 8b67782

Please sign in to comment.