From 3da6608638420e72ae55f2f1e9a8224542d48b9e Mon Sep 17 00:00:00 2001 From: Chaoyi Yuan Date: Fri, 26 Apr 2019 11:22:39 +0800 Subject: [PATCH] Bump version to 1.3.0 and update changelog (#386) --- CHANGELOG.md | 8 ++++++++ iotedgedev/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 243f9bd0..7444ddd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog All notable changes to this project since 0.82.0 will be documented in this file. +## [1.3.0] - 2019-04-25 +### Added +- Add module twin support for simulator + +### Changed +- Update azure-cli-core to fix module import error +- Fix applicationinsights incompatible version issue [[#383](https://github.com/Azure/iotedgedev/issues/383)] + ## [1.2.0] - 2019-02-26 ### Changed - Fix issue creating C modules when temp folder and target project folder are on different disks [[#362](https://github.com/Azure/iotedgedev/pull/362)] diff --git a/iotedgedev/__init__.py b/iotedgedev/__init__.py index f5bf1856..e63ddcd0 100644 --- a/iotedgedev/__init__.py +++ b/iotedgedev/__init__.py @@ -4,5 +4,5 @@ __author__ = 'Microsoft Corporation' __email__ = 'vsciet@microsoft.com' -__version__ = '1.2.0' +__version__ = '1.3.0' __AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe' diff --git a/setup.cfg b/setup.cfg index 37c36804..d036d20d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.0 +current_version = 1.3.0 commit = True tag = True diff --git a/setup.py b/setup.py index d411fd81..8fbde2c0 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ def run(self): setup( name='iotedgedev', - version='1.2.0', + version='1.3.0', description='The Azure IoT Edge Dev Tool greatly simplifies the IoT Edge development process by automating many routine manual tasks, such as building, deploying, pushing modules and configuring the IoT Edge Runtime.', long_description='See https://github.com/azure/iotedgedev for usage instructions.', author='Microsoft Corporation',