Skip to content

Commit 186d939

Browse files
authored
chore: CHANGELOG and version bump for release 3.1.0 (#189)
1 parent a1eddb5 commit 186d939

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

Diff for: CHANGELOG.rst

+19
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22
Changelog
33
*********
44

5+
3.1.0 -- 2021-11-10
6+
===================
7+
8+
Deprecation
9+
-----------
10+
The AWS DynamoDB Encryption Client for Python no longer supports Python 3.5
11+
as of version 3.1; only Python 3.6+ is supported. Customers using
12+
Python 3.5 can still use the 2.x line of the AWS DynamoDB Encryption Client for Python,
13+
which will continue to receive security updates, in accordance
14+
with our `Support Policy <https://github.com/aws/aws-dynamodb-encryption-python/blob/master/SUPPORT_POLICY.rst>`__.
15+
16+
Feature
17+
-----------
18+
* Warn on Deprecated Python usage
19+
`#368 <https://github.com/aws/aws-encryption-sdk-python/pull/368>`_
20+
* Add Python 3.10 to CI
21+
* Remove Python 3.5 from testing
22+
23+
524
3.0.0 -- 2021-07-15
625
===================
726

Diff for: src/dynamodb_encryption_sdk/identifiers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from enum import Enum
1515

1616
__all__ = ("LOGGER_NAME", "CryptoAction", "EncryptionKeyType", "KeyEncodingType")
17-
__version__ = "3.0.0"
17+
__version__ = "3.1.0"
1818

1919
LOGGER_NAME = "dynamodb_encryption_sdk"
2020
USER_AGENT_SUFFIX = "DynamodbEncryptionSdkPython/{}".format(__version__)

0 commit comments

Comments
 (0)