Skip to content

Commit 3418eae

Browse files
chore: Prep for release 2.1.0 (#172)
1 parent 828adb6 commit 3418eae

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed

CHANGELOG.rst

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

5+
2.1.0 -- 2021-07-15
6+
===================
7+
8+
Deprecation Announcement
9+
------------------------
10+
The AWS DynamoDB Encryption Client for Python is discontinuing support for Python 2.
11+
Future major versions of this library will drop support for Python 2 and begin to
12+
adopt changes that are known to break Python 2.
13+
14+
Support for Python 3.4 will be removed at the same time. Moving forward, we will
15+
support Python 3.5+.
16+
17+
Security updates will still be available for the DynamoDB Encryption Client 2.x
18+
line for the next 12 months, in accordance with our `Support Policy <https://github.com/aws/aws-dynamodb-encryption-python/blob/master/SUPPORT_POLICY.rst>`__.
19+
20+
521
2.0.0 -- 2021-02-04
622
===================
723

README.rst

+6
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ Required Prerequisites
4949

5050
* Python 2.7 or 3.4+
5151

52+
**NOTE: 2.x is the last major version of this library that will
53+
support Python 2. Future major versions will begin to adopt changes
54+
known to break Python 2. Python 3.4 support will also be removed
55+
in future major versions; Python 3.5+ will be required.**
56+
57+
5258
Installation
5359
============
5460

SUPPORT_POLICY.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ This table describes the current support status of each major version of the AWS
2727
- 2022-07-08
2828
* - 2.x
2929
- Generally Available
30+
- Maintenance
31+
- 2021-07-13
32+
* - 3.x
3033
-
31-
-
34+
- Generally Available
35+
- 2021-07-13
3236

3337
.. _AWS SDKs and Tools Maintenance Policy: https://docs.aws.amazon.com/sdkref/latest/guide/maint-policy.html#version-life-cycle

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__ = "2.0.0"
17+
__version__ = "2.1.0"
1818

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

0 commit comments

Comments
 (0)