Skip to content
Merged
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.6 -- 2026-05-07
===================

Fixes
-----------
* fix: Replace isinstance metaclass check with issubclass in generate_ecc_signing_key (#802)
`#802 <https://github.com/aws/aws-encryption-sdk-python/pull/802>`_
* fix: use issubclass instead of isinstance in _set_signature_type (#800)
`#800 <https://github.com/aws/aws-encryption-sdk-python/pull/800>`_

4.0.5 -- 2026-04-20
===================

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.5"
__version__ = "4.0.6"
USER_AGENT_SUFFIX = "AwsEncryptionSdkPython/{}".format(__version__)


Expand Down
Loading