diff --git a/CHANGELOG.md b/CHANGELOG.md index c891cc2a..8bac258e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project since 0.82.0 will be documented in this file. +## [3.3.7] - 2022-11-7 + +- Lock simulator version at 0.14.18 + ## [3.3.6] - 2022-10-10 - Update docker compose diff --git a/iotedgedev/__init__.py b/iotedgedev/__init__.py index 98d93900..23327ede 100644 --- a/iotedgedev/__init__.py +++ b/iotedgedev/__init__.py @@ -2,5 +2,5 @@ __author__ = 'Microsoft Corporation' __email__ = 'opencode@microsoft.com' -__version__ = '3.3.6' +__version__ = '3.3.7' __AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe' diff --git a/requirements.txt b/requirements.txt index ff8d6d6d..21e1a735 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.6.4 -iotedgehubdev==0.14.16 +iotedgehubdev==0.14.18 applicationinsights==0.11.9 commentjson==0.9.0 azure-cli-core==2.34.1 diff --git a/setup.cfg b/setup.cfg index f0593756..29fd4f88 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.3.6 +current_version = 3.3.7 commit = True tag = True diff --git a/setup.py b/setup.py index 0f94b59d..153400f0 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ # Note >=2.35.0 cannot be used as is not compatible with the docker dependency; # docker requires websocket-client==0.56.0 and azure-cli-core>=2.35.0 requires websocket-client==1.31.1. 'azure-cli-core >= 2.34.1, < 2.35.0', - 'iotedgehubdev == 0.14.16', + 'iotedgehubdev == 0.14.18', 'applicationinsights == 0.11.9', 'commentjson == 0.9.0', 'pyyaml>=5.4', @@ -33,7 +33,7 @@ setup( name='iotedgedev', - version='3.3.6', + version='3.3.7', 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 46d05817..e8de78dc 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -2,4 +2,4 @@ __author__ = 'Microsoft Corporation' __email__ = 'opencode@microsoft.com' -__version__ = '3.3.6' +__version__ = '3.3.7'