From af089eac32b1a78c67e47c65b939c61cd267a455 Mon Sep 17 00:00:00 2001 From: AJITOMI Daisuke Date: Thu, 16 Jul 2026 14:29:31 +0900 Subject: [PATCH] chore(release): bump version to v3.3.0 --- CHANGES.rst | 26 ++++++++++++++++++++++++++ cwt/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 6285112..20c3bac 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,32 @@ Changes Unreleased ---------- +Version 3.3.0 +------------- + +Released 2026-07-16 + +- Relax the upper limit of cryptography to <52. `#672 `__ +- Drop support for Python 3.9. `#671 `__ +- Allow newer cryptography and add Python 3.14 tox. `#670 `__ +- Add script to generate testvectors.txt with PSK vectors. `#663 `__ +- Add PSK vectors from testvectors.txt. `#662 `__ +- Load COSE-HPKE vectors from external file. `#660 `__ +- Require psk_id in protected header and update test vectors. `#659 `__ +- Follow draft-ietf-cose-hpke-23. `#638 `__ +- Update dependencies. + - Bump cryptography to 46.0.5. `#658 `__ + - Bump cbor2 to 5.8.0. `#653 `__ + - Bump cbor2 to 5.7.1. `#651 `__ + - Bump cryptography to 46.0.3. `#650 `__ + - Bump pyhpke to 0.6.3. `#649 `__ +- Update dev dependencies. + - Bump virtualenv to 20.36.1. `#656 `__ + - Bump sphinx-rtd-theme to 3.1.0. `#655 `__ + - Bump urllib3 to 2.6.3. `#654 `__ + - Bump urllib3 to 2.6.0. `#652 `__ + - Bump tox to 4.30.3. `#648 `__ + Version 3.2.0 ------------- diff --git a/cwt/__init__.py b/cwt/__init__.py index f536f89..8eef82e 100644 --- a/cwt/__init__.py +++ b/cwt/__init__.py @@ -27,7 +27,7 @@ from .recipient import Recipient from .signer import Signer -__version__ = "3.2.0" +__version__ = "3.3.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 7370758..245b3c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "cwt" -version = "3.2.0" +version = "3.3.0" description = "A Python implementation of CWT/COSE." authors = ["Ajitomi Daisuke "] license = "MIT"