Skip to content

Commit f45e9cb

Browse files
committed
Merge branch 'release-0.0.9'
2 parents e8e0fcf + 3989852 commit f45e9cb

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.rst

+19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
Changelog
22
=========
33

4+
Unreleased
5+
----------
6+
7+
* feature:Botocore: Update to Botocore 0.92.0
8+
9+
* Add support for the latest Amazon EC2 Container Service API.
10+
* Allow calling AWS STS ``assume_role_with_saml`` without credentials.
11+
* Update to latest Amazon CloudFront API
12+
* Add support for AWS STS regionalized calls by passing both a region
13+
name and an endpoint URL.
14+
(`botocore issue 464 <https://github.com/boto/botocore/pull/464>`__)
15+
* Add support for Amazon Simple Systems Management Service (SSM)
16+
* Fix Amazon S3 auth errors when uploading large files
17+
to the ``eu-central-1`` and ``cn-north-1`` regions.
18+
(`botocore issue 462 <https://github.com/boto/botocore/pull/462>`__)
19+
* Add support for AWS IAM managed policies
20+
* Add support for Amazon ElastiCache tagging
21+
* Add support for Amazon Route53 Domains tagging of domains
22+
423
0.0.8 - 2015-02-10
524
------------------
625

boto3/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
__author__ = 'Amazon Web Services'
20-
__version__ = '0.0.8'
20+
__version__ = '0.0.9'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def get_version():
2626
]
2727

2828
requires = [
29-
'botocore==0.87.0',
29+
'botocore==0.92.0',
3030
'bcdoc==0.12.2',
3131
'jmespath==0.6.1',
3232
]

0 commit comments

Comments
 (0)