From ac4ce7d53ffe80a8ceeea607aec36d572fa723b4 Mon Sep 17 00:00:00 2001 From: Steve Pulec Date: Sun, 24 Jan 2016 17:21:19 -0500 Subject: [PATCH] 0.4.21 --- CHANGELOG.md | 5 +++++ moto/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0a142825..07f21b735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ Moto Changelog Latest ------ +0.4.21 +------ + + * Fix bug with wrong response matches for S3 + 0.4.20 ------ diff --git a/moto/__init__.py b/moto/__init__.py index 9a9162ab1..08cd66e9b 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.20' +__version__ = '0.4.21' from .autoscaling import mock_autoscaling # flake8: noqa from .cloudformation import mock_cloudformation # flake8: noqa diff --git a/setup.py b/setup.py index ae66ce6ec..a179e819f 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ extras_require = { setup( name='moto', - version='0.4.20', + version='0.4.21', description='A library that allows your python tests to easily' ' mock out the boto library', author='Steve Pulec',