diff --git a/.changes/1.12.4.json b/.changes/1.12.4.json new file mode 100644 index 0000000000..b8e8bd814a --- /dev/null +++ b/.changes/1.12.4.json @@ -0,0 +1,17 @@ +[ + { + "category": "``savingsplans``", + "description": "[``botocore``] Update savingsplans client to latest version", + "type": "api-change" + }, + { + "category": "``appconfig``", + "description": "[``botocore``] Update appconfig client to latest version", + "type": "api-change" + }, + { + "category": "``pinpoint``", + "description": "[``botocore``] Update pinpoint client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3de21da1d5..abbfbe7214 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.12.4 +====== + +* api-change:``savingsplans``: [``botocore``] Update savingsplans client to latest version +* api-change:``appconfig``: [``botocore``] Update appconfig client to latest version +* api-change:``pinpoint``: [``botocore``] Update pinpoint client to latest version + + 1.12.3 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 0dd03078f8..fb57aadeff 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.12.3' +__version__ = '1.12.4' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index db446c0791..9429103063 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires-dist = - botocore>=1.15.3,<1.16.0 + botocore>=1.15.4,<1.16.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.3.0,<0.4.0 diff --git a/setup.py b/setup.py index bb10de4fa6..cc13ac5f43 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.15.3,<1.16.0', + 'botocore>=1.15.4,<1.16.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.3.0,<0.4.0' ]