Skip to content

Commit 0400c34

Browse files
authored
Update change log for main for July release, to release 1.3.2, with version 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
1 parent 91f1c23 commit 0400c34

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

CHANGELOG.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
# Release History
22

3-
## 1.4.0-beta.1 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
8-
9-
### Bugs Fixed
3+
## 1.3.2 (2022-07-07)
104

115
### Other Changes
12-
- Removed unreachable code in az_http_policy_retry.c.
6+
- Removed unreachable code in `az_http_policy_retry.c`.
137

148
## 1.3.1 (2022-04-05)
159

cmake-modules/AddAzureSDKforC.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
include(FetchContent)
1818
FetchContent_Declare(azuresdkforc
1919
GIT_REPOSITORY https://github.com/Azure/azure-sdk-for-c.git
20-
GIT_TAG 1.3.1)
20+
GIT_TAG 1.3.2)
2121
FetchContent_GetProperties(azuresdkforc)
2222
if(NOT azuresdkforc_POPULATED)
2323
FetchContent_Populate(azuresdkforc)

sdk/inc/azure/core/az_version.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,19 @@
1717

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

2222
/// Major numeric identifier.
2323
#define AZ_SDK_VERSION_MAJOR 1
2424

2525
/// Minor numeric identifier.
26-
#define AZ_SDK_VERSION_MINOR 4
26+
#define AZ_SDK_VERSION_MINOR 3
2727

2828
/// Patch numeric identifier.
29-
#define AZ_SDK_VERSION_PATCH 0
29+
#define AZ_SDK_VERSION_PATCH 2
3030

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

3435
#endif //_az_VERSION_H

0 commit comments

Comments
 (0)