diff --git a/.changes/1.17.94.json b/.changes/1.17.94.json new file mode 100644 index 0000000000..e655e8a0c4 --- /dev/null +++ b/.changes/1.17.94.json @@ -0,0 +1,17 @@ +[ + { + "category": "``lookoutmetrics``", + "description": "[``botocore``] Added \"LEARNING\" status for anomaly detector and updated description for \"Offset\" parameter in MetricSet APIs.", + "type": "api-change" + }, + { + "category": "``iotanalytics``", + "description": "[``botocore``] Adds support for data store partitions.", + "type": "api-change" + }, + { + "category": "``greengrassv2``", + "description": "[``botocore``] We have verified the APIs being released here and are ready to release", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 418167ac58..183fa404a2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.17.94 +======= + +* api-change:``lookoutmetrics``: [``botocore``] Added "LEARNING" status for anomaly detector and updated description for "Offset" parameter in MetricSet APIs. +* api-change:``iotanalytics``: [``botocore``] Adds support for data store partitions. +* api-change:``greengrassv2``: [``botocore``] We have verified the APIs being released here and are ready to release + + 1.17.93 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 44f975de5d..5b8fa9680b 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.93' +__version__ = '1.17.94' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 10cd6a4be3..aaa4158c88 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.93,<1.21.0 + botocore>=1.20.94,<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 d1c5f22fa4..517d6a719e 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.93,<1.21.0', + 'botocore>=1.20.94,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.4.0,<0.5.0' ]