From 36312130134984ef27afd8bceb0ea4eb66b13884 Mon Sep 17 00:00:00 2001 From: Chaoyi Yuan Date: Wed, 31 Jul 2019 15:06:31 +0800 Subject: [PATCH] do not use lark-parser enabled commentjson and bump version to 2.0.2 (#402) * do not use lark-parse enabled commentjson --- CHANGELOG.md | 4 ++++ iotedgedev/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a33b95b0..04cf4f43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project since 0.82.0 will be documented in this file. +## [2.0.2] - 2019-07-31 +### Changed +- Fix errors caused by latest lark-parser release. + ## [2.0.1] - 2019-07-11 ### Changed - Fix build errors when some projects under modules folder have no module.json [[#396](https://github.com/Azure/iotedgedev/issues/396)] diff --git a/iotedgedev/__init__.py b/iotedgedev/__init__.py index 25edd039..da33d552 100644 --- a/iotedgedev/__init__.py +++ b/iotedgedev/__init__.py @@ -4,5 +4,5 @@ __author__ = 'Microsoft Corporation' __email__ = 'vsciet@microsoft.com' -__version__ = '2.0.1' +__version__ = '2.0.2' __AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe' diff --git a/setup.cfg b/setup.cfg index e3aaddd9..9a220b71 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.1 +current_version = 2.0.2 commit = True tag = True diff --git a/setup.py b/setup.py index 7305eb4b..77628788 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def run(self): 'iotedgehubdev >= 0.8.0', 'six', 'applicationinsights < 0.11.8', - 'commentjson', + 'commentjson == 0.7.2', 'pyyaml>=3.10,<4.3', 'pypiwin32==219; sys_platform == "win32" and python_version < "3.6"', 'pypiwin32==223; sys_platform == "win32" and python_version >= "3.6"' @@ -60,7 +60,7 @@ def run(self): setup( name='iotedgedev', - version='2.0.1', + version='2.0.2', 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',