diff --git a/.changes/1.35.97.json b/.changes/1.35.97.json new file mode 100644 index 0000000000..a9edbd8c06 --- /dev/null +++ b/.changes/1.35.97.json @@ -0,0 +1,17 @@ +[ + { + "category": "``redshift``", + "description": "[``botocore``] Additions to the PubliclyAccessible and Encrypted parameters clarifying what the defaults are.", + "type": "api-change" + }, + { + "category": "``securitylake``", + "description": "[``botocore``] Doc only update for ServiceName that fixes several customer-reported issues", + "type": "api-change" + }, + { + "category": "``sts``", + "description": "[``botocore``] Fixed typos in the descriptions.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-redshift-73037.json b/.changes/next-release/api-change-redshift-73037.json deleted file mode 100644 index 5f71a6d842..0000000000 --- a/.changes/next-release/api-change-redshift-73037.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``redshift``", - "description": "[``botocore``] Additions to the PubliclyAccessible and Encrypted parameters clarifying what the defaults are." -} diff --git a/.changes/next-release/api-change-securitylake-39404.json b/.changes/next-release/api-change-securitylake-39404.json deleted file mode 100644 index 93256843fd..0000000000 --- a/.changes/next-release/api-change-securitylake-39404.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``securitylake``", - "description": "[``botocore``] Doc only update for ServiceName that fixes several customer-reported issues" -} diff --git a/.changes/next-release/api-change-sts-81550.json b/.changes/next-release/api-change-sts-81550.json deleted file mode 100644 index d8732317d0..0000000000 --- a/.changes/next-release/api-change-sts-81550.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sts``", - "description": "[``botocore``] Fixed typos in the descriptions." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 54adaeba6d..aeb715e2a0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.35.97 +======= + +* api-change:``redshift``: [``botocore``] Additions to the PubliclyAccessible and Encrypted parameters clarifying what the defaults are. +* api-change:``securitylake``: [``botocore``] Doc only update for ServiceName that fixes several customer-reported issues +* api-change:``sts``: [``botocore``] Fixed typos in the descriptions. + + 1.35.96 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 878e59c04c..85098b010d 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.35.96' +__version__ = '1.35.97' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 3f7c0c2134..6133a27cc1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.96,<1.36.0 + botocore>=1.35.97,<1.36.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index c87e15da58..b3157d5d95 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.96,<1.36.0', + 'botocore>=1.35.97,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]