Skip to content

Commit

Permalink
update pypi docker versions (#510)
Browse files Browse the repository at this point in the history
* update docker version 5.0.0 and docker-compose 1.29.1

* changelog and version change

* update release version to 3.3.1
  • Loading branch information
cindydeng1998 authored Oct 20, 2021
1 parent 84358d1 commit 7ef7125
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All notable changes to this project since 0.82.0 will be documented in this file.

## [3.3.1] - 2021-10-20
- Updated Python Docker package versions to newest version and enable simulator dependencies

## [3.3.0] - 2021-8-24
- Add support for layered deployment manifests when building, pushing and generating
- Add support for creating deployments in IoTHub via the new command: `iotedgedev iothub deploy`
Expand Down
2 changes: 1 addition & 1 deletion iotedgedev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

__author__ = 'Microsoft Corporation'
__email__ = '[email protected]'
__version__ = '3.3.0'
__version__ = '3.3.1'
__AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe'
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
click==8.0.1
docker==4.4.1
docker==5.0.0
python-dotenv==0.19.0
requests==2.25.1
fstrings==0.1.0
msrestazure==0.4.34
iotedgehubdev==0.14.9
iotedgehubdev>=0.14.9
applicationinsights==0.11.9
commentjson==0.9.0
pypiwin32==219; sys_platform == 'win32' and python_version < '3.6'
Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pip==21.2.3
bumpversion==0.5.3
wheel==0.30.0
watchdog==0.8.3
docker-compose==1.28.3
docker-compose==1.29.1
flake8==3.9.2
pycodestyle==2.7.0
autopep8==1.5.7
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.3.0
current_version = 3.3.1
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
requirements = [
'click>=6.0',
'bcrypt<=3.1.7',
'docker >= 3.7.0, <= 4.4.1',
'docker >= 3.7.0',
'python-dotenv',
'requests >= 2.20.0, <= 2.25.1',
'fstrings',
Expand All @@ -31,7 +31,7 @@

setup(
name='iotedgedev',
version='3.3.0',
version='3.3.1',
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',
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = 'Microsoft Corporation'
__email__ = '[email protected]'
__version__ = '3.3.0'
__version__ = '3.3.1'

0 comments on commit 7ef7125

Please sign in to comment.