Merge pull request #1579 from spulec/version-1.3.3

Version 1.3.3
This commit is contained in:
Steve Pulec 2018-04-18 18:51:59 -04:00 committed by GitHub
commit 39390585b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 8 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.2
current_version = 1.3.3
[bumpversion:file:setup.py]

View File

@ -1,7 +1,16 @@
Moto Changelog
===================
1.3.1
1.3.3
------
* Fix a regression in S3 url regexes
* APIGateway region fixes
* ECS improvements
* Add @mock_cognitoidentity, thanks to @brcoding
1.3.2
------
The huge change in this version is that the responses library is no longer vendored. Many developers are now unblocked. Kudos to @spulec for the fix.

View File

@ -434,7 +434,6 @@
- [ ] get_applied_schema_version
- [ ] get_directory
- [ ] get_facet
- [ ] get_object_attributes
- [ ] get_object_information
- [ ] get_schema_as_json
- [ ] get_typed_link_facet_information
@ -4379,7 +4378,6 @@
- [ ] create_user
- [ ] delete_alias
- [ ] delete_group
- [ ] delete_mailbox_permissions
- [ ] delete_resource
- [ ] delete_user
- [ ] deregister_from_work_mail
@ -4392,12 +4390,10 @@
- [ ] list_aliases
- [ ] list_group_members
- [ ] list_groups
- [ ] list_mailbox_permissions
- [ ] list_organizations
- [ ] list_resource_delegates
- [ ] list_resources
- [ ] list_users
- [ ] put_mailbox_permissions
- [ ] register_to_work_mail
- [ ] reset_password
- [ ] update_primary_email_address

View File

@ -3,7 +3,7 @@ import logging
# logging.getLogger('boto').setLevel(logging.CRITICAL)
__title__ = 'moto'
__version__ = '1.3.2'
__version__ = '1.3.3'
from .acm import mock_acm # flake8: noqa
from .apigateway import mock_apigateway, mock_apigateway_deprecated # flake8: noqa

View File

@ -40,7 +40,7 @@ else:
setup(
name='moto',
version='1.3.2',
version='1.3.3',
description='A library that allows your python tests to easily'
' mock out the boto library',
author='Steve Pulec',