Skip to content

Commit

Permalink
Increment version for C SDK releases (#2425)
Browse files Browse the repository at this point in the history
Increment sdk version after release of C SDK
  • Loading branch information
azure-sdk authored Nov 11, 2022
1 parent 1dd89ab commit 7b7864f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 1.5.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 1.4.0 (2022-11-11)

### Features Added
Expand Down
7 changes: 3 additions & 4 deletions sdk/inc/azure/core/az_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,18 @@

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

/// Major numeric identifier.
#define AZ_SDK_VERSION_MAJOR 1

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

/// Patch numeric identifier.
#define AZ_SDK_VERSION_PATCH 0

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

#endif //_az_VERSION_H

0 comments on commit 7b7864f

Please sign in to comment.