Skip to content

Commit

Permalink
Update change log for main for July release, to release 1.3.2, with v…
Browse files Browse the repository at this point in the history
…ersion update (#2250)

* Update change log for main for July release, to release 1.3.2, with version update

* Increment AddAzureSDKforC.cmake to 1.3.2

* Update az_version.h to 1.3.2 removing pre-release
  • Loading branch information
ahsonkhan authored Jul 7, 2022
1 parent 91f1c23 commit 0400c34
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 deletions.
10 changes: 2 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
# Release History

## 1.4.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
## 1.3.2 (2022-07-07)

### Other Changes
- Removed unreachable code in az_http_policy_retry.c.
- Removed unreachable code in `az_http_policy_retry.c`.

## 1.3.1 (2022-04-05)

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.3.1)
GIT_TAG 1.3.2)
FetchContent_GetProperties(azuresdkforc)
if(NOT azuresdkforc_POPULATED)
FetchContent_Populate(azuresdkforc)
Expand Down
9 changes: 5 additions & 4 deletions sdk/inc/azure/core/az_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@

/// The version in string format used for telemetry following the `semver.org` standard
/// (https://semver.org).
#define AZ_SDK_VERSION_STRING "1.4.0-beta.1"
#define AZ_SDK_VERSION_STRING "1.3.2"

/// Major numeric identifier.
#define AZ_SDK_VERSION_MAJOR 1

/// Minor numeric identifier.
#define AZ_SDK_VERSION_MINOR 4
#define AZ_SDK_VERSION_MINOR 3

/// Patch numeric identifier.
#define AZ_SDK_VERSION_PATCH 0
#define AZ_SDK_VERSION_PATCH 2

/// Optional pre-release identifier. SDK is in a pre-release state when present.
#define AZ_SDK_VERSION_PRERELEASE "beta.1"
#define AZ_SDK_VERSION_PRERELEASE
#undef AZ_SDK_VERSION_PRERELEASE

#endif //_az_VERSION_H

0 comments on commit 0400c34

Please sign in to comment.