diff --git a/CHANGES.rst b/CHANGES.rst index daed152..6285112 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,40 @@ Changes Unreleased ---------- +Version 3.2.0 +------------- + +Released 2025-09-17 + +- Fix a DeprecationWarning in a test util. `#637 `__ by @achamayou +- Add a cwt.utils.ResolvedHeaders to allow tstr header labels and values. `#636 `__ by @achamayou +- Typo fix. `#635 `__ by @achamayou +- Prevent mutation of supp_pub.protected in to_cis. `#630 `__ +- Use enums on tests. `#625 `__ +- Update dependencies. + - Bump cryptography to 46.0.2. `#646 `__ + - Bump cbor2 to 5.7.0. `#632 `__ +- Update dev dependencies. + - Bump pytest-cov to 7.0.0. `#644 `__ + - Bump tox to 4.30.2. `#642 `__ + - Bump pytest to 8.4.2. `#641 `__ + + + - Bump pre-commit/black to 25.1.0. `#642 `__ + - Bump pre-commit/blacken-docs to 1.19.1. `#642 `__ + - Bump pre-commit/flake8 to 7.2.0. `#642 `__ + - Bump pre-commit/isort to 6.0.1. `#642 `__ + - Bump pre-commit/mirrors-mypy to 1.15.0. `#642 `__ + - Bump pre-commit to 4.2.0. `#642 `__ + + - Bump pre-commit/black to 25.1.0. `#646 `__ + - Bump pre-commit/blacken-docs to 1.19.1. `#646 `__ + - Bump pre-commit/flake8 to 7.2.0. `#646 `__ + - Bump pre-commit/isort to 6.0.1. `#646 `__ + - Bump pre-commit/mirrors-mypy to 1.15.0. `#646 `__ + - Bump pre-commit to 4.2.0. `#646 `__ + - Bump requests to 2.32.4. `#646 `__ + Version 3.1.0 ------------- diff --git a/cwt/__init__.py b/cwt/__init__.py index f22fba0..f536f89 100644 --- a/cwt/__init__.py +++ b/cwt/__init__.py @@ -27,7 +27,7 @@ from .recipient import Recipient from .signer import Signer -__version__ = "3.1.0" +__version__ = "3.2.0" __title__ = "cwt" __description__ = "A Python implementation of CWT/COSE" __url__ = "https://python-cwt.readthedocs.io" diff --git a/pyproject.toml b/pyproject.toml index bd29c2c..1ab1173 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "cwt" -version = "3.1.0" +version = "3.2.0" description = "A Python implementation of CWT/COSE." authors = ["Ajitomi Daisuke "] license = "MIT"