From e55db0a249599d82c66c46c4dd17057625e8a93c Mon Sep 17 00:00:00 2001 From: Shubham Chaturvedi Date: Tue, 21 May 2024 11:03:50 -0700 Subject: [PATCH] chore(release): update changelog and identifiers.py (#684) --- CHANGELOG.rst | 21 +++++++++++++++++++++ src/aws_encryption_sdk/identifiers.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b8b3d5992..609b58c73 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,27 @@ Changelog ********* +3.3.0 -- 2024-05-20 +=================== + +Deprecation +----------- +The AWS Encryption SDK for Python no longer supports Python 3.7 +as of version 3.3; only Python 3.8+ is supported. + +Fixes +----------- +* fix: Handle errors when decrypting multiple EDKs with raw RSA MKPs (#672 (https://github.com/aws/aws-encryption-sdk-python/pull/672)) +* chore: Updated description of decrypt() usage in src/aws_encryption_sdk/__init__.py (#660 (https://github.com/aws/aws-encryption-sdk-python/pull/660)) +* fix(CI): removed appveyor.yml (#668 (https://github.com/aws/aws-encryption-sdk-python/pull/668)) +* fix(CI): updated ci_test-vector-handler.yaml and ci_tests.yaml (#665 (https://github.com/aws/aws-encryption-sdk-python/pull/665)) + +Maintenance +----------- +* feat: remove Python3.7 support (#648 (https://github.com/aws/aws-encryption-sdk-python/pull/648)) +* chore: Update copyright headers (#677 (https://github.com/aws/aws-encryption-sdk-python/pull/677)) +* chore(CFN): Changes for MPL TestVectors (#653 (https://github.com/aws/aws-encryption-sdk-python/pull/653)) + 3.2.0 -- 2024-03-18 =================== diff --git a/src/aws_encryption_sdk/identifiers.py b/src/aws_encryption_sdk/identifiers.py index 84df9c751..a06030889 100644 --- a/src/aws_encryption_sdk/identifiers.py +++ b/src/aws_encryption_sdk/identifiers.py @@ -17,7 +17,7 @@ # We only actually need these imports when running the mypy checks pass -__version__ = "3.2.0" +__version__ = "3.3.0" USER_AGENT_SUFFIX = "AwsEncryptionSdkPython/{}".format(__version__)