diff --git a/.changes/1.17.96.json b/.changes/1.17.96.json new file mode 100644 index 0000000000..d5d552ae69 --- /dev/null +++ b/.changes/1.17.96.json @@ -0,0 +1,22 @@ +[ + { + "category": "``kms``", + "description": "[``botocore``] Adds support for multi-Region keys", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] This release adds support for VLAN-tagged network traffic over an Elastic Network Interface (ENI). This feature is in limited Preview for this release. Contact your account manager if you are interested in this feature.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] This release enables fast cloning in Aurora Serverless. You can now clone between Aurora Serverless clusters and Aurora Provisioned clusters.", + "type": "api-change" + }, + { + "category": "``mediatailor``", + "description": "[``botocore``] Adds AWS Secrets Manager Access Token Authentication for Source Locations", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4c2d4fd3cb..fc78f81505 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.17.96 +======= + +* api-change:``kms``: [``botocore``] Adds support for multi-Region keys +* api-change:``ec2``: [``botocore``] This release adds support for VLAN-tagged network traffic over an Elastic Network Interface (ENI). This feature is in limited Preview for this release. Contact your account manager if you are interested in this feature. +* api-change:``rds``: [``botocore``] This release enables fast cloning in Aurora Serverless. You can now clone between Aurora Serverless clusters and Aurora Provisioned clusters. +* api-change:``mediatailor``: [``botocore``] Adds AWS Secrets Manager Access Token Authentication for Source Locations + + 1.17.95 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 5d0371b931..1e148f81d3 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.95' +__version__ = '1.17.96' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index fc83926f92..fa6af92f17 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.95,<1.21.0 + botocore>=1.20.96,<1.21.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.4.0,<0.5.0 diff --git a/setup.py b/setup.py index 0e82bebdc0..9f43a6b209 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.95,<1.21.0', + 'botocore>=1.20.96,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.4.0,<0.5.0' ]