diff --git a/.changes/1.17.39.json b/.changes/1.17.39.json new file mode 100644 index 0000000000..23d4397a5f --- /dev/null +++ b/.changes/1.17.39.json @@ -0,0 +1,22 @@ +[ + { + "category": "``iotwireless``", + "description": "[``botocore``] Support tag-on-create for WirelessDevice.", + "type": "api-change" + }, + { + "category": "``customer-profiles``", + "description": "[``botocore``] This release adds an optional parameter named FlowDefinition in PutIntegrationRequest.", + "type": "api-change" + }, + { + "category": "``events``", + "description": "[``botocore``] Add support for SageMaker Model Builder Pipelines Targets to EventBridge", + "type": "api-change" + }, + { + "category": "``transcribe``", + "description": "[``botocore``] Amazon Transcribe now supports tagging words that match your vocabulary filter for batch transcription.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 41cca50e33..842c8dc756 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.17.39 +======= + +* api-change:``iotwireless``: [``botocore``] Support tag-on-create for WirelessDevice. +* api-change:``customer-profiles``: [``botocore``] This release adds an optional parameter named FlowDefinition in PutIntegrationRequest. +* api-change:``events``: [``botocore``] Add support for SageMaker Model Builder Pipelines Targets to EventBridge +* api-change:``transcribe``: [``botocore``] Amazon Transcribe now supports tagging words that match your vocabulary filter for batch transcription. + + 1.17.38 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 87f07f68c4..53e6979703 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.38' +__version__ = '1.17.39' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 960e65311d..935beb1c06 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.38,<1.21.0 + botocore>=1.20.39,<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 fc896a2445..8696b9dbbd 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.38,<1.21.0', + 'botocore>=1.20.39,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.3.0,<0.4.0' ]