From b025bce729e7d6c81a79cda78baed428515d2860 Mon Sep 17 00:00:00 2001 From: "Paul Cichonski (pcichons)" Date: Thu, 19 Sep 2024 14:36:12 -0400 Subject: [PATCH 1/4] bump botocore dependencies --- CHANGES.rst | 4 ++++ aiobotocore/__init__.py | 2 +- pyproject.toml | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e9e39ac7..81955932 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Changes ------- +2.16.0 (2024-09-19) +^^^^^^^^^^^^^^^^^^^ +* bump botocore dependency specification + 2.15.0 (2024-09-10) ^^^^^^^^^^^^^^^^^^^ * bump botocore dependency specification diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 754dd42c..48aa744f 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1 +1 @@ -__version__ = '2.15.0' +__version__ = '2.16.0' diff --git a/pyproject.toml b/pyproject.toml index 6f2661d5..241bbf2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ classifiers = [ dynamic = ["version", "readme"] dependencies = [ - "botocore >=1.35.16, <1.35.17", # NOTE: When updating, always keep `project.optional-dependencies` aligned + "botocore >=1.35.16, <1.35.23", # NOTE: When updating, always keep `project.optional-dependencies` aligned "aiohttp >=3.9.2, <4.0.0", "wrapt >=1.10.10, <2.0.0", "aioitertools >=0.5.1, <1.0.0", @@ -38,10 +38,10 @@ dependencies = [ [project.optional-dependencies] awscli = [ - "awscli >=1.34.16, <1.34.17", + "awscli >=1.34.16, <1.34.23", ] boto3 = [ - "boto3 >=1.35.16, <1.35.17", + "boto3 >=1.35.16, <1.35.23", ] [project.urls] From ce4346ad6a9ee365d3796a68af742b5a65d8878e Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Thu, 19 Sep 2024 23:18:59 +0200 Subject: [PATCH 2/4] Update CHANGES.rst --- CHANGES.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 81955932..afbe1c56 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,9 @@ Changes ------- -2.16.0 (2024-09-19) +2.15.1 (2024-09-19) ^^^^^^^^^^^^^^^^^^^ -* bump botocore dependency specification +* relax botocore dependency specification 2.15.0 (2024-09-10) ^^^^^^^^^^^^^^^^^^^ From 498c031f6100596da7c4ca54a35e6509037cdb72 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Thu, 19 Sep 2024 23:19:28 +0200 Subject: [PATCH 3/4] Update __init__.py --- aiobotocore/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 48aa744f..4135d855 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1 +1 @@ -__version__ = '2.16.0' +__version__ = '2.15.1' From 7c3634a753a48e35ae2af8a24ac7489e7956e227 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Thu, 19 Sep 2024 23:22:10 +0200 Subject: [PATCH 4/4] Update pyproject.toml --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 241bbf2b..1177ba3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ classifiers = [ dynamic = ["version", "readme"] dependencies = [ - "botocore >=1.35.16, <1.35.23", # NOTE: When updating, always keep `project.optional-dependencies` aligned + "botocore >=1.35.16, <1.35.24", # NOTE: When updating, always keep `project.optional-dependencies` aligned "aiohttp >=3.9.2, <4.0.0", "wrapt >=1.10.10, <2.0.0", "aioitertools >=0.5.1, <1.0.0", @@ -38,10 +38,10 @@ dependencies = [ [project.optional-dependencies] awscli = [ - "awscli >=1.34.16, <1.34.23", + "awscli >=1.34.16, <1.34.24", ] boto3 = [ - "boto3 >=1.35.16, <1.35.23", + "boto3 >=1.35.16, <1.35.24", ] [project.urls]