diff --git a/CHANGELOG.md b/CHANGELOG.md index 9687b55b6..4a91d75be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ Moto Changelog Latest ------ +0.4.29 +------ + + * Nest flask import so that it is not required globally + 0.4.28 ------ diff --git a/moto/__init__.py b/moto/__init__.py index 691b12326..2252d55b9 100644 --- a/moto/__init__.py +++ b/moto/__init__.py @@ -3,7 +3,7 @@ import logging logging.getLogger('boto').setLevel(logging.CRITICAL) __title__ = 'moto' -__version__ = '0.4.28' +__version__ = '0.4.29' from .apigateway import mock_apigateway # flake8: noqa from .autoscaling import mock_autoscaling # flake8: noqa diff --git a/setup.py b/setup.py index a10d21cc6..6a9d00745 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ extras_require = { setup( name='moto', - version='0.4.28', + version='0.4.29', description='A library that allows your python tests to easily' ' mock out the boto library', author='Steve Pulec',