Skip to content

Commit

Permalink
Merge branch 'release-0.11.1'
Browse files Browse the repository at this point in the history
* release-0.11.1:
  Bumping version to 0.11.1
  Update minimum required botocore version to 1.36.0 (#326)
  • Loading branch information
aws-sdk-python-automation committed Jan 16, 2025
2 parents 0778911 + 5f6cb50 commit af066ef
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .changes/0.11.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"category": "Dependencies",
"description": "Update the floor version of botocore to 1.36.0 to match imports.",
"type": "bugfix"
}
]
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
CHANGELOG
=========

0.11.1
======

* bugfix:Dependencies: Update the floor version of botocore to 1.36.0 to match imports.


0.11.0
======

Expand Down
2 changes: 1 addition & 1 deletion s3transfer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def __call__(self, bytes_amount):
from s3transfer.exceptions import RetriesExceededError, S3UploadFailedError

__author__ = 'Amazon Web Services'
__version__ = '0.11.0'
__version__ = '0.11.1'


class NullHandler(logging.Handler):
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore>=1.33.2,<2.0a.0
botocore>=1.36.0,<2.0a.0

[options.extras_require]
crt = botocore[crt]>=1.33.2,<2.0a0
crt = botocore[crt]>=1.36.0,<2.0a0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


requires = [
'botocore>=1.33.2,<2.0a.0',
'botocore>=1.36.0,<2.0a.0',
]


Expand All @@ -30,7 +30,7 @@ def get_version():
include_package_data=True,
install_requires=requires,
extras_require={
'crt': 'botocore[crt]>=1.33.2,<2.0a.0',
'crt': 'botocore[crt]>=1.36.0,<2.0a.0',
},
license="Apache License 2.0",
python_requires=">= 3.8",
Expand Down

0 comments on commit af066ef

Please sign in to comment.