From 66b1055d0dc4f45999e0dd7a94b462f5ae42ee1e Mon Sep 17 00:00:00 2001 From: Chaoyi Yuan Date: Mon, 28 Oct 2019 10:26:28 +0800 Subject: [PATCH] Prepare for 2.1.0 release (#412) --- CHANGELOG.md | 7 +++++++ iotedgedev/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04cf4f43..f291c15c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog All notable changes to this project since 0.82.0 will be documented in this file. +## [2.1.0] - 2019-10-28 +### Added +- Validate schema of deployment template and generated deployment manifest in `genconfig` command + +### Changed +- Show progress info for docker commands + ## [2.0.2] - 2019-07-31 ### Changed - Fix errors caused by latest lark-parser release. diff --git a/iotedgedev/__init__.py b/iotedgedev/__init__.py index da33d552..d5d4303b 100644 --- a/iotedgedev/__init__.py +++ b/iotedgedev/__init__.py @@ -4,5 +4,5 @@ __author__ = 'Microsoft Corporation' __email__ = 'vsciet@microsoft.com' -__version__ = '2.0.2' +__version__ = '2.1.0' __AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe' diff --git a/setup.cfg b/setup.cfg index 9a220b71..c47886be 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.2 +current_version = 2.1.0 commit = True tag = True diff --git a/setup.py b/setup.py index 77628788..9cd75977 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ def run(self): setup( name='iotedgedev', - version='2.0.2', + version='2.1.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',