From 0051a8410bf4c89e69edfc225100313cf2811fa1 Mon Sep 17 00:00:00 2001 From: Benjamin Farley Date: Fri, 16 Apr 2021 13:13:15 -0600 Subject: [PATCH] chore: Prepare for release 2.1.0 Bump version in identifiers.py and update changelog --- CHANGELOG.rst | 15 +++++++++++++++ src/aws_encryption_sdk/identifiers.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cbce4f972..9f2f0553c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,21 @@ Changelog ********* +2.1.0 -- 2020-04-20 +=================== + +Maintenance +----------- +* New minimum cryptography dependency 2.5.0 since we're using newer byte type checking + `#308 `_ +* New minimum boto dependency 1.10.0 to ensure KMS Decrypt APIs know about the KeyId parameter + `#317 `_ +* Add python 3.8 and 3.9 to CI and update setup.py to clarify we support them + `#329 `_ +* Update decrypt oracle and test vector handlers with 2.0.0 changes + `#303 `_ +* Added a number of CodeBuild specs to support integration tests and release processes + 2.0.0 -- 2020-09-24 =================== diff --git a/src/aws_encryption_sdk/identifiers.py b/src/aws_encryption_sdk/identifiers.py index 7eb368280..90de9eb82 100644 --- a/src/aws_encryption_sdk/identifiers.py +++ b/src/aws_encryption_sdk/identifiers.py @@ -27,7 +27,7 @@ # We only actually need these imports when running the mypy checks pass -__version__ = "2.0.0" +__version__ = "2.1.0" USER_AGENT_SUFFIX = "AwsEncryptionSdkPython/{}".format(__version__)