From 310b3d5fdd64f1e441d6f4893e99dd0425c69c96 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 12 Apr 2021 19:22:20 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-codebuild-62258.json | 5 +++++ .changes/next-release/api-change-fsx-758.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-codebuild-62258.json create mode 100644 .changes/next-release/api-change-fsx-758.json diff --git a/.changes/next-release/api-change-codebuild-62258.json b/.changes/next-release/api-change-codebuild-62258.json new file mode 100644 index 0000000000..b772f937f6 --- /dev/null +++ b/.changes/next-release/api-change-codebuild-62258.json @@ -0,0 +1,5 @@ +{ + "category": "``codebuild``", + "type": "api-change", + "description": "[``botocore``] AWS CodeBuild now allows you to set the access permissions for build artifacts, project artifacts, and log files that are uploaded to an Amazon S3 bucket that is owned by another account." +} diff --git a/.changes/next-release/api-change-fsx-758.json b/.changes/next-release/api-change-fsx-758.json new file mode 100644 index 0000000000..ab9e55ee96 --- /dev/null +++ b/.changes/next-release/api-change-fsx-758.json @@ -0,0 +1,5 @@ +{ + "category": "``fsx``", + "type": "api-change", + "description": "[``botocore``] Support for cross-region and cross-account backup copies" +} From c1a006972095e966e551960fe1df4504be439307 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 12 Apr 2021 19:22:27 +0000 Subject: [PATCH 2/2] Bumping version to 1.17.50 --- .changes/1.17.50.json | 12 ++++++++++++ .../next-release/api-change-codebuild-62258.json | 5 ----- .changes/next-release/api-change-fsx-758.json | 5 ----- CHANGELOG.rst | 7 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 .changes/1.17.50.json delete mode 100644 .changes/next-release/api-change-codebuild-62258.json delete mode 100644 .changes/next-release/api-change-fsx-758.json diff --git a/.changes/1.17.50.json b/.changes/1.17.50.json new file mode 100644 index 0000000000..de005a05a2 --- /dev/null +++ b/.changes/1.17.50.json @@ -0,0 +1,12 @@ +[ + { + "category": "``fsx``", + "description": "[``botocore``] Support for cross-region and cross-account backup copies", + "type": "api-change" + }, + { + "category": "``codebuild``", + "description": "[``botocore``] AWS CodeBuild now allows you to set the access permissions for build artifacts, project artifacts, and log files that are uploaded to an Amazon S3 bucket that is owned by another account.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-codebuild-62258.json b/.changes/next-release/api-change-codebuild-62258.json deleted file mode 100644 index b772f937f6..0000000000 --- a/.changes/next-release/api-change-codebuild-62258.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``codebuild``", - "type": "api-change", - "description": "[``botocore``] AWS CodeBuild now allows you to set the access permissions for build artifacts, project artifacts, and log files that are uploaded to an Amazon S3 bucket that is owned by another account." -} diff --git a/.changes/next-release/api-change-fsx-758.json b/.changes/next-release/api-change-fsx-758.json deleted file mode 100644 index ab9e55ee96..0000000000 --- a/.changes/next-release/api-change-fsx-758.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``fsx``", - "type": "api-change", - "description": "[``botocore``] Support for cross-region and cross-account backup copies" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9e4b382593..81d59b8736 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.17.50 +======= + +* api-change:``fsx``: [``botocore``] Support for cross-region and cross-account backup copies +* api-change:``codebuild``: [``botocore``] AWS CodeBuild now allows you to set the access permissions for build artifacts, project artifacts, and log files that are uploaded to an Amazon S3 bucket that is owned by another account. + + 1.17.49 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 7cb1e3d264..ebbafd0a7e 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.49' +__version__ = '1.17.50' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 748c0cbbec..cd209b90fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.49,<1.21.0 + botocore>=1.20.50,<1.21.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.3.0,<0.4.0 diff --git a/setup.py b/setup.py index d97b476caf..5e4ca78c1b 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.49,<1.21.0', + 'botocore>=1.20.50,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.3.0,<0.4.0' ]