diff --git a/.changes/1.17.105.json b/.changes/1.17.105.json new file mode 100644 index 0000000000..70e21d6084 --- /dev/null +++ b/.changes/1.17.105.json @@ -0,0 +1,12 @@ +[ + { + "category": "``elbv2``", + "description": "[``botocore``] Update elbv2 client to latest version", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] This release removes network-insights-boundary", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b2d01280d5..f5dd0b2226 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.17.105 +======== + +* api-change:``elbv2``: [``botocore``] Update elbv2 client to latest version +* api-change:``ec2``: [``botocore``] This release removes network-insights-boundary + + 1.17.104 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 37fc2baea3..98abde5124 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.104' +__version__ = '1.17.105' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index e20289cd02..835061d1a5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.104,<1.21.0 + botocore>=1.20.105,<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 dd910ba770..60fdb02f97 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.104,<1.21.0', + 'botocore>=1.20.105,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.4.0,<0.5.0' ]