diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index aa6a2ea8..b9cba5fc 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -83,7 +83,7 @@ jobs: make mototest - name: Upload coverage to Codecov if: matrix.python-version == '3.11' - uses: codecov/codecov-action@v4.6.0 + uses: codecov/codecov-action@v4.5.0 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos files: ./coverage.xml diff --git a/CHANGES.rst b/CHANGES.rst index afbe1c56..db375c72 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Changes ------- +2.15.2 (2024-10-09) +^^^^^^^^^^^^^^^^^^^ +* relax botocore dependency specification + 2.15.1 (2024-09-19) ^^^^^^^^^^^^^^^^^^^ * relax botocore dependency specification diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 4135d855..30334bd3 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1 +1 @@ -__version__ = '2.15.1' +__version__ = '2.15.2' diff --git a/pyproject.toml b/pyproject.toml index 1177ba3b..51bb8214 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ classifiers = [ dynamic = ["version", "readme"] dependencies = [ - "botocore >=1.35.16, <1.35.24", # NOTE: When updating, always keep `project.optional-dependencies` aligned + "botocore >=1.35.16, <1.35.37", # 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.24", + "awscli >=1.34.16, <1.35.3", ] boto3 = [ - "boto3 >=1.35.16, <1.35.24", + "boto3 >=1.35.16, <1.35.37", ] [project.urls]