Skip to content

Commit

Permalink
Upgrade Botocore dependency, fixes #21
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgtaylor committed Mar 5, 2015
1 parent 3bf22f2 commit 530fde5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ Unreleased
* feature:Session: Add a ``region_name`` option when creating a session.
(`issue 69 <https://github.com/boto/boto3/pull/69>`__,
`issue 21 <https://github.com/boto/boto3/issues/21>`__)
* feature:Botocore: Update to Botocore 0.94.0

* Update to the latest Amazon CloudeSearch API.
* Add support for near-realtime data updates and exporting historical
data from Amazon Cognito Sync.
* **Removed** the ability to clone a low-level client. Instead, create
a new client with the same parameters.
* Add support for URL paths in an endpoint URL.
* Multithreading signature fixes.
* Add support for listing hosted zones by name and getting hosted zone
counts from Amazon Route53.
* Add support for tagging to AWS Data Pipeline.

0.0.9 - 2015-02-19
------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ def get_version():
init = open(os.path.join(ROOT, 'boto3', '__init__.py')).read()
return VERSION_RE.search(init).group(1)

packages = [
packages = [
'boto3',
'boto3.resources',
]

requires = [
'botocore==0.92.0',
'botocore==0.94.0',
'bcdoc==0.12.2',
'jmespath==0.6.1',
]
Expand Down

0 comments on commit 530fde5

Please sign in to comment.