Skip to content

Commit d66fe1b

Browse files
authored
0.3.0 release (#85)
1 parent f642cf0 commit d66fe1b

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 0.3.0 - 2018-09-21
2+
### Added
3+
* Support environment variables set in the `env` section of a module
4+
* Support getting credentials of multiple modules
5+
6+
### Changed
7+
* Always pull the EdgeHub image before starting
8+
* Fix "the JSON object must be str, not 'bytes'" when starting on Python 3.5
9+
110
## 0.2.0 - 2018-08-03
211
### Added
312
* Support networks and volumes in `createOptions`

iotedgehubdev/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
pkg_resources.declare_namespace(__name__)
99

1010
__author__ = 'Microsoft Corporation'
11-
__version__ = '0.2.0'
11+
__version__ = '0.3.0'
1212
__AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
from setuptools import find_packages, setup
55

6-
VERSION = '0.2.0'
6+
VERSION = '0.3.0'
77
# If we have source, validate that our version numbers match
88
# This should prevent uploading releases with mismatched versions.
99
try:

0 commit comments

Comments
 (0)