Skip to content

Commit

Permalink
chore(CHANGELOG): 3.3.0 (#778)
Browse files Browse the repository at this point in the history
  • Loading branch information
RitvikKapila authored Aug 5, 2024
1 parent 4dd6e0b commit c4e6524
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@
Changelog
*********

3.3.0 -- 2024-08-05
===================

Deprecation
-----------
- The AWS DynamoDB Encryption Client for Python no longer supports Python 3.7 as of version 3.3
- Only Python 3.8+ is supported.
- We no longer support OpenSSL 1.0.1 or 1.0.2, as per `cryptography documentation <https://cryptography.io/en/3.4.6/installation.html#supported-platforms>`_.

Feature
-----------
* Warn on Deprecated Python 3.7 usage
* Add Python 3.11 to CI
* Add Python 3.12 to CI

Maintenance
-----------
* Update requirements for boto3 (>=1.10.0) and cryptography (>=3.4.6)

3.2.0 -- 2021-12-19
===================

Expand Down
2 changes: 1 addition & 1 deletion SUPPORT_POLICY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ This table describes the current support status of each major version of the AWS
* - 3.x
- Generally Available
- Maintenance
- 2023-07-23
- 2024-08-05

.. _AWS SDKs and Tools Maintenance Policy: https://docs.aws.amazon.com/sdkref/latest/guide/maint-policy.html#version-life-cycle
2 changes: 1 addition & 1 deletion src/dynamodb_encryption_sdk/identifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from enum import Enum

__all__ = ("LOGGER_NAME", "CryptoAction", "EncryptionKeyType", "KeyEncodingType")
__version__ = "3.2.0"
__version__ = "3.3.0"

LOGGER_NAME = "dynamodb_encryption_sdk"
USER_AGENT_SUFFIX = "DynamodbEncryptionSdkPython/{}".format(__version__)
Expand Down

0 comments on commit c4e6524

Please sign in to comment.