diff --git a/moto/__init__.py b/moto/__init__.py index 8101a4332..c93719cb2 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.31' +__version__ = '1.0.0' from .apigateway import mock_apigateway, mock_apigateway_deprecated # flake8: noqa from .autoscaling import mock_autoscaling, mock_autoscaling_deprecated # flake8: noqa diff --git a/setup.py b/setup.py index 790bec377..1116b1794 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ extras_require = { setup( name='moto', - version='0.4.31', + version='1.0.0', description='A library that allows your python tests to easily' ' mock out the boto library', author='Steve Pulec',