Skip to content

Commit

Permalink
Update version for January release, to release 1.5.0. (#2473)
Browse files Browse the repository at this point in the history
* Update version for January release, to release 1.5.0.

* Update cmake module to use latest released git tag.
  • Loading branch information
ahsonkhan committed Jan 11, 2023
1 parent c317e45 commit 6d6e634
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
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.4.0)
GIT_TAG 1.5.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.5.0-beta.1"
#define AZ_SDK_VERSION_STRING "1.5.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.1"
#define AZ_SDK_VERSION_PRERELEASE
#undef AZ_SDK_VERSION_PRERELEASE

#endif //_az_VERSION_H

0 comments on commit 6d6e634

Please sign in to comment.