Skip to content

Commit 079813f

Browse files
authored
Update the changelog and repo version to release 1.1.0. (#1641)
* Update the changelog and repo version to release 1.1.0. * Add link to pnp feature branch. * Update azure sdk for c cmake module to point to GA tag. * Add a note that the SDK doesn't contain any breaking change between previous GA. * Add a comma.
1 parent 716fa03 commit 079813f

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
# Release History
22

3-
## 1.1.0-beta.4 (Unreleased)
3+
## 1.1.0 (2021-03-09)
44

5+
### Breaking Changes
6+
7+
- Compared to the previous 1.0.0 release, there are **no** breaking changes.
8+
- Removed `az_iot_pnp_client.h`, which included some beta APIs related to IoT Plug and Play such as `az_iot_pnp_client()`.
9+
- These will ship in a future release and will continue to be available as beta from [this feature branch](https://github.com/Azure/azure-sdk-for-c/tree/feature/iot_pnp).
10+
511
### Bug Fixes
612

713
- [[#1600]](https://github.com/Azure/azure-sdk-for-c/pull/1600) Make sure `az_json_writer_append_json_text()` appends a comma between elements of a JSON array.
814
- [[#1580]](https://github.com/Azure/azure-sdk-for-c/pull/1580) Fix build on Ubuntu 18.04 by updating CMake policy and MSVC runtime libraries.
915

1016
## 1.1.0-beta.2 (2020-11-11)
1117

12-
### New Features
13-
14-
1518
### Bug Fixes
1619

1720
- [[#1472]](https://github.com/Azure/azure-sdk-for-c/pull/1472) Fix `az_iot_message_properties_next()` when the buffer in which the properties were kept was bigger than the length of characters in the buffer.
1821

1922
### Other Changes and Improvements
2023

21-
- [[#1473]](https://github.com/Azure/azure-sdk-for-c/pull/1473) Add remove server certificate validation on paho and ESP8266 samples.
24+
- [[#1473]](https://github.com/Azure/azure-sdk-for-c/pull/1473) Add remote server certificate validation on paho and ESP8266 samples.
2225
- [[#1449]](https://github.com/Azure/azure-sdk-for-c/pull/1449) Add basic reconnection capability for the ESP8266 sample.
2326
- [[#1490]](https://github.com/Azure/azure-sdk-for-c/pull/1490) Fix static analyzer flagging of non-checked return value in `az_iot_hub_client_c2d_parse_received_topic()`.
2427

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.1.0-beta.2)
20+
GIT_TAG 1.1.0)
2121
FetchContent_GetProperties(azuresdkforc)
2222
if(NOT azuresdkforc_POPULATED)
2323
FetchContent_Populate(azuresdkforc)

sdk/inc/azure/core/az_version.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
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.1.0-beta.4"
20+
#define AZ_SDK_VERSION_STRING "1.1.0"
2121

2222
/// Major numeric identifier.
2323
#define AZ_SDK_VERSION_MAJOR 1
@@ -29,6 +29,7 @@
2929
#define AZ_SDK_VERSION_PATCH 0
3030

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

3435
#endif //_az_VERSION_H

0 commit comments

Comments
 (0)