Skip to content

Commit 4176d71

Browse files
committed
chore: update CHANGELOG for v4.0.3
1 parent cbfab66 commit 4176d71

File tree

7 files changed

+20
-7
lines changed

7 files changed

+20
-7
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Changelog
33
*********
44

5+
4.0.3 -- 2025-07-03
6+
===================
7+
8+
Maintenance
9+
-----------
10+
* deps: Extend supported `MPL`_ versions to include v1.11.1
11+
`#763 <https://github.com/aws/aws-encryption-sdk-python/pull/763>`_
12+
13+
MPL v1.11.1 updates pytz version range to include 2025 releases.
14+
515
4.0.2 -- 2025-06-30
616
===================
717

performance_tests/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Required Prerequisites
4949
Recommended Prerequisites
5050
=========================
5151

52-
* aws-cryptographic-material-providers: == 1.11.0
52+
* aws-cryptographic-material-providers: == 1.11.1
5353
* Requires Python 3.11+.
5454

5555
*****
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
aws-cryptographic-material-providers>=1.7.4,<=1.11.0
1+
aws-cryptographic-material-providers>=1.7.4,<=1.11.1

requirements_mpl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
aws-cryptographic-material-providers>=1.7.4,<=1.11.0
1+
aws-cryptographic-material-providers>=1.7.4,<=1.11.1

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""AWS Encryption SDK for Python."""
2+
23
import os
34
import re
45

@@ -10,7 +11,9 @@
1011

1112
def read(*args):
1213
"""Reads complete file contents."""
13-
return open(os.path.join(HERE, *args), encoding="utf-8").read() # pylint: disable=consider-using-with
14+
return open(
15+
os.path.join(HERE, *args), encoding="utf-8"
16+
).read() # pylint: disable=consider-using-with
1417

1518

1619
def get_version():
@@ -40,7 +43,7 @@ def get_requirements():
4043
license="Apache License 2.0",
4144
install_requires=get_requirements(),
4245
extras_require={
43-
"MPL": ["aws-cryptographic-material-providers>=1.7.4,<=1.11.0"],
46+
"MPL": ["aws-cryptographic-material-providers>=1.7.4,<=1.11.1"],
4447
},
4548
classifiers=[
4649
"Development Status :: 5 - Production/Stable",

src/aws_encryption_sdk/identifiers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# We only actually need these imports when running the mypy checks
1818
pass
1919

20-
__version__ = "4.0.2"
20+
__version__ = "4.0.3"
2121
USER_AGENT_SUFFIX = "AwsEncryptionSdkPython/{}".format(__version__)
2222

2323

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
aws-cryptographic-material-providers>=1.7.4,<=1.11.0
1+
aws-cryptographic-material-providers>=1.7.4,<=1.11.1

0 commit comments

Comments
 (0)