diff --git a/.changes/1.20.20.json b/.changes/1.20.20.json new file mode 100644 index 0000000000..c1af19f626 --- /dev/null +++ b/.changes/1.20.20.json @@ -0,0 +1,7 @@ +[ + { + "category": "``rekognition``", + "description": "[``botocore``] This release added new KnownGender types for Celebrity Recognition.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5173c2bd6c..78a3fba550 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +1.20.20 +======= + +* api-change:``rekognition``: [``botocore``] This release added new KnownGender types for Celebrity Recognition. + + 1.20.19 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 6819709688..a88b22bff4 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.20.19' +__version__ = '1.20.20' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index c4f6a33100..056074cba3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.23.19,<1.24.0 + botocore>=1.23.20,<1.24.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.5.0,<0.6.0 diff --git a/setup.py b/setup.py index 282e873989..4d4e9492a2 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.23.19,<1.24.0', + 'botocore>=1.23.20,<1.24.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]