Skip to content

Commit 38122ac

Browse files
committed
Prepare for v2.2.0 release
1 parent 7f2327c commit 38122ac

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,36 @@
11
#Change Log
2+
## [2.2.0](https://github.com/aws/aws-iot-device-sdk-embedded-C/releases/tag/v2.2.0) (Nov 22, 2017)
3+
Bugfixes/Improvements:
4+
- Bugfixes/Improvements:
5+
- [#49](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/49) - Add support for SHADOW_JSON_STRING as supported value
6+
- [#57](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/57) - remove unistd.h
7+
- [#58](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/58) - Fix return type of _aws_iot_mqtt_internal_is_
8+
- [#59](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/95) - Fix extraneous assignmenttopic_matched
9+
- [#62](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/62) - Clearing SubscriptionList entries in shadowActionAcks after subscription failure
10+
- [#63](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/63) - Stack overflow when IOT_DEBUG is enabled
11+
- [#66](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/66) - Bug in send packet function
12+
- [#69](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/69) - Fix for broken deleteActionHandler in shadow API
13+
- [#71](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/71) - Prevent messages on /update/accepted from incrementing shadowJsonVersionNum in delta
14+
- [#73](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/73) - wait for all messages to be received in subscribe publish sample
15+
- [#96](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/96) - destroy TLS instance even if disconnect send fails
16+
- Fix for aws_iot_mqtt_resubscribe not properly resubscribing to all topics
17+
- Update MbedTLS Network layer Readme to remove specific version link
18+
- Fix for not Passing througheError code on aws_iot_shadow_connect failure
19+
- Allow sending of SHADOW_JSON_OBJECT to the shadow
20+
- Ignore delta token callback for metadata
21+
- Fix infinite publish exiting early in subscribe publish sample
22+
- Improvements:
23+
- Updated jsmn to latest commit
24+
- Pull requests:
25+
- [#29](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/29) - three small fixes
26+
- [#59](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/59) - Fixed MQTT header constructing and parsing
27+
- [#88](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/88) - Fix username and password are confused
28+
- [#78](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/78) - Fixed compilation warnings
29+
- [#102](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/102) - Corrected markdown headers
30+
- [#105](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/105) - Fixed warnings when compiling
31+
- Change default keepalive interval to 600 seconds
32+
- Added SDK metrics string into connect packet
33+
234
## [2.1.1](https://github.com/aws/aws-iot-device-sdk-embedded-C/releases/tag/v2.1.1) (Sep 5, 2016)
335

436
Bugfixes/Improvements:

include/aws_iot_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
/**
3636
* @brief MINOR version when functionality is added in a backwards-compatible manner.
3737
*/
38-
#define VERSION_MINOR 1
38+
#define VERSION_MINOR 2
3939
/**
4040
* @brief PATCH version when backwards-compatible bug fixes are made.
4141
*/
42-
#define VERSION_PATCH 1
42+
#define VERSION_PATCH 0
4343
/**
4444
* @brief TAG is an (optional) tag appended to the version if a more descriptive verion is needed.
4545
*/

0 commit comments

Comments
 (0)