Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Changelog
*********

4.0.2 -- 2025-06-30
===================

Maintenance
-----------
* deps: Extend supported `MPL`_ versions to include v1.11.0
`#763 <https://github.com/aws/aws-encryption-sdk-python/pull/763>`_

v1.11.0 contains performance improvements for the hierarchical keyring and extends the range of supported `cryptography` versions.

4.0.1 -- 2025-03-26
===================

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Required Prerequisites
Recommended Prerequisites
=========================

* aws-cryptographic-material-providers: == 1.10.0
* aws-cryptographic-material-providers: == 1.11.0
* Requires Python 3.11+.

Installation
Expand Down
2 changes: 1 addition & 1 deletion codebuild/py311/decrypt_net_401_vectors_keyrings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ phases:
python: 3.11
pre_build:
commands:
# Build Python MPL TestVector runner from source
# Build Python MPL TestVector runner from source
- sh test_vector_handlers/scripts/install_mpl_test_vector_runner.sh
# Fetch ESDK .NET v4.0.1 Test Vectors
- VECTOR_ZIP=$CODEBUILD_SRC_DIR/v4-Net-4.0.1.zip
Expand Down
2 changes: 1 addition & 1 deletion performance_tests/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Required Prerequisites
Recommended Prerequisites
=========================

* aws-cryptographic-material-providers: == 1.10.0
* aws-cryptographic-material-providers: == 1.11.0
* Requires Python 3.11+.

*****
Expand Down
2 changes: 1 addition & 1 deletion performance_tests/requirements_mpl.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws-cryptographic-material-providers>=1.7.4,<=1.10.0
aws-cryptographic-material-providers>=1.7.4,<=1.11.0
2 changes: 1 addition & 1 deletion requirements_mpl.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws-cryptographic-material-providers>=1.7.4,<=1.10.0
aws-cryptographic-material-providers>=1.7.4,<=1.11.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def get_requirements():
license="Apache License 2.0",
install_requires=get_requirements(),
extras_require={
"MPL": ["aws-cryptographic-material-providers>=1.7.4,<=1.10.0"],
"MPL": ["aws-cryptographic-material-providers>=1.7.4,<=1.11.0"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion src/aws_encryption_sdk/identifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# We only actually need these imports when running the mypy checks
pass

__version__ = "4.0.1"
__version__ = "4.0.2"
USER_AGENT_SUFFIX = "AwsEncryptionSdkPython/{}".format(__version__)


Expand Down
2 changes: 1 addition & 1 deletion test_vector_handlers/requirements_mpl.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws-cryptographic-material-providers>=1.7.4,<=1.10.0
aws-cryptographic-material-providers>=1.7.4,<=1.11.0
Loading