diff --git a/CHANGES.rst b/CHANGES.rst index b666e629..ca5c7ff9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Changes ------- +2.11.1 (2024-01-25) +^^^^^^^^^^^^^^^^^^^ +* bump botocore dependency specification + 2.11.0 (2024-01-19) ^^^^^^^^^^^^^^^^^^^ * send project-specific `User-Agent` HTTP header #853 diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index fb7a749a..d3583e9b 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1 +1 @@ -__version__ = '2.11.0' +__version__ = '2.11.1' diff --git a/setup.py b/setup.py index 26414f64..f9c444d4 100644 --- a/setup.py +++ b/setup.py @@ -7,15 +7,15 @@ # NOTE: When updating botocore make sure to update awscli/boto3 versions below install_requires = [ # pegged to also match items in `extras_require` - 'botocore>=1.33.2,<1.34.23', + 'botocore>=1.33.2,<1.34.28', 'aiohttp>=3.7.4.post0,<4.0.0', 'wrapt>=1.10.10, <2.0.0', 'aioitertools>=0.5.1,<1.0.0', ] extras_require = { - 'awscli': ['awscli>=1.31.2,<1.32.23'], - 'boto3': ['boto3>=1.33.2,<1.34.23'], + 'awscli': ['awscli>=1.31.2,<1.32.28'], + 'boto3': ['boto3>=1.33.2,<1.34.28'], }