From cfebd97a86e3d9c10a199c58feea5f00a4201127 Mon Sep 17 00:00:00 2001 From: Mariana Mihova <10135329+marianan@users.noreply.github.com> Date: Thu, 3 Mar 2022 10:58:14 -0800 Subject: [PATCH] Lock simulator version (#524) * Lock simulator version * Update changelog with version number --- CHANGELOG.md | 3 +++ iotedgedev/__init__.py | 2 +- requirements.txt | 2 +- setup.cfg | 2 +- setup.py | 4 ++-- tests/__init__.py | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebf6fff5..0b42ad8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All notable changes to this project since 0.82.0 will be documented in this file. +## [3.3.2] - 2022-03-02 +- Lock simulator version at 0.14.11 + ## [3.3.1] - 2021-10-20 - Updated Python Docker package versions to newest version and enable simulator dependencies diff --git a/iotedgedev/__init__.py b/iotedgedev/__init__.py index 90e84ffe..c5251055 100644 --- a/iotedgedev/__init__.py +++ b/iotedgedev/__init__.py @@ -2,5 +2,5 @@ __author__ = 'Microsoft Corporation' __email__ = 'opencode@microsoft.com' -__version__ = '3.3.1' +__version__ = '3.3.2' __AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe' \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index c9dee3c8..384c1f9a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ python-dotenv==0.19.0 requests==2.25.1 fstrings==0.1.0 msrestazure==0.4.34 -iotedgehubdev>=0.14.9 +iotedgehubdev==0.14.11 applicationinsights==0.11.9 commentjson==0.9.0 pypiwin32==219; sys_platform == 'win32' and python_version < '3.6' diff --git a/setup.cfg b/setup.cfg index 23285d4d..176ee8c4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.3.1 +current_version = 3.3.2 commit = True tag = True diff --git a/setup.py b/setup.py index ab507cd7..6431758b 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ 'requests >= 2.20.0, <= 2.25.1', 'fstrings', 'azure-cli-core >= 2.25.0', - 'iotedgehubdev >= 0.14.3', + 'iotedgehubdev == 0.14.11', 'applicationinsights == 0.11.9', 'commentjson == 0.9.0', 'pyyaml>=4.1,<=4.2b4', @@ -31,7 +31,7 @@ setup( name='iotedgedev', - version='3.3.1', + version='3.3.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', diff --git a/tests/__init__.py b/tests/__init__.py index 857cd4bf..bf2ff47d 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -2,4 +2,4 @@ __author__ = 'Microsoft Corporation' __email__ = 'opencode@microsoft.com' -__version__ = '3.3.1' +__version__ = '3.3.2'