From 45abf31fcf79d8921389c5de13ebe99eb2664c8c Mon Sep 17 00:00:00 2001 From: mattsb42-aws Date: Wed, 9 Oct 2019 16:27:06 -0700 Subject: [PATCH 1/3] bump version to 1.1.2 --- src/dynamodb_encryption_sdk/identifiers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dynamodb_encryption_sdk/identifiers.py b/src/dynamodb_encryption_sdk/identifiers.py index d5bd61c9..a6b097a3 100644 --- a/src/dynamodb_encryption_sdk/identifiers.py +++ b/src/dynamodb_encryption_sdk/identifiers.py @@ -14,7 +14,7 @@ from enum import Enum __all__ = ("LOGGER_NAME", "CryptoAction", "EncryptionKeyType", "KeyEncodingType") -__version__ = "1.1.1" +__version__ = "1.1.2" LOGGER_NAME = "dynamodb_encryption_sdk" USER_AGENT_SUFFIX = "DynamodbEncryptionSdkPython/{}".format(__version__) From 426cb03e1b4db0e3e9b4d93d535064e6841f1b0d Mon Sep 17 00:00:00 2001 From: mattsb42-aws Date: Wed, 9 Oct 2019 16:27:21 -0700 Subject: [PATCH 2/3] set release date for 1.1.2 --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 92e3daf6..8af0a7b7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ Changelog ********* -1.1.2 -- 2019-10-?? +1.1.2 -- 2019-10-10 =================== Bugfixes From 34dabf29aae4633d783b84bc711683fd220cd188 Mon Sep 17 00:00:00 2001 From: mattsb42-aws Date: Wed, 9 Oct 2019 18:22:12 -0700 Subject: [PATCH 3/3] bump to 1.2.0 and update changelog with possible breaking change note --- CHANGELOG.rst | 5 ++++- src/dynamodb_encryption_sdk/identifiers.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8af0a7b7..9b3ae577 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,13 +2,16 @@ Changelog ********* -1.1.2 -- 2019-10-10 +1.2.0 -- 2019-10-10 =================== Bugfixes -------- * Fix :class:`AwsKmsCryptographicMaterialsProvider` regional clients override bug `#124 `_ + **NOTE: It is possible that this is a breaking change for you, + depending on how you are re-using any custom botocore sessions + that you provide to AwsKmsCryptographicMaterialsProvider.** * Remove ``attributes`` attribute from :class:`EncryptionContext` ``str`` and ``repr`` values. `#127 `_ diff --git a/src/dynamodb_encryption_sdk/identifiers.py b/src/dynamodb_encryption_sdk/identifiers.py index a6b097a3..9187ecb9 100644 --- a/src/dynamodb_encryption_sdk/identifiers.py +++ b/src/dynamodb_encryption_sdk/identifiers.py @@ -14,7 +14,7 @@ from enum import Enum __all__ = ("LOGGER_NAME", "CryptoAction", "EncryptionKeyType", "KeyEncodingType") -__version__ = "1.1.2" +__version__ = "1.2.0" LOGGER_NAME = "dynamodb_encryption_sdk" USER_AGENT_SUFFIX = "DynamodbEncryptionSdkPython/{}".format(__version__)