Skip to content

Commit 02b8a69

Browse files
authored
Merge pull request #647 from dajiaji/bump-to-v3_2_0
Bump version to 3.2.0.
2 parents 8f816a4 + 9ce95c6 commit 02b8a69

3 files changed

Lines changed: 36 additions & 2 deletions

File tree

CHANGES.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,40 @@ Changes
44
Unreleased
55
----------
66

7+
Version 3.2.0
8+
-------------
9+
10+
Released 2025-09-17
11+
12+
- Fix a DeprecationWarning in a test util. `#637 <https://github.com/dajiaji/python-cwt/pull/637>`__ by @achamayou
13+
- Add a cwt.utils.ResolvedHeaders to allow tstr header labels and values. `#636 <https://github.com/dajiaji/python-cwt/pull/636>`__ by @achamayou
14+
- Typo fix. `#635 <https://github.com/dajiaji/python-cwt/pull/635>`__ by @achamayou
15+
- Prevent mutation of supp_pub.protected in to_cis. `#630 <https://github.com/dajiaji/python-cwt/pull/630>`__
16+
- Use enums on tests. `#625 <https://github.com/dajiaji/python-cwt/pull/625>`__
17+
- Update dependencies.
18+
- Bump cryptography to 46.0.2. `#646 <https://github.com/dajiaji/python-cwt/pull/646>`__
19+
- Bump cbor2 to 5.7.0. `#632 <https://github.com/dajiaji/python-cwt/pull/632>`__
20+
- Update dev dependencies.
21+
- Bump pytest-cov to 7.0.0. `#644 <https://github.com/dajiaji/python-cwt/pull/644>`__
22+
- Bump tox to 4.30.2. `#642 <https://github.com/dajiaji/python-cwt/pull/642>`__
23+
- Bump pytest to 8.4.2. `#641 <https://github.com/dajiaji/python-cwt/pull/641>`__
24+
25+
26+
- Bump pre-commit/black to 25.1.0. `#642 <https://github.com/dajiaji/python-cwt/pull/642>`__
27+
- Bump pre-commit/blacken-docs to 1.19.1. `#642 <https://github.com/dajiaji/python-cwt/pull/642>`__
28+
- Bump pre-commit/flake8 to 7.2.0. `#642 <https://github.com/dajiaji/python-cwt/pull/642>`__
29+
- Bump pre-commit/isort to 6.0.1. `#642 <https://github.com/dajiaji/python-cwt/pull/642>`__
30+
- Bump pre-commit/mirrors-mypy to 1.15.0. `#642 <https://github.com/dajiaji/python-cwt/pull/642>`__
31+
- Bump pre-commit to 4.2.0. `#642 <https://github.com/dajiaji/python-cwt/pull/642>`__
32+
33+
- Bump pre-commit/black to 25.1.0. `#646 <https://github.com/dajiaji/python-cwt/pull/646>`__
34+
- Bump pre-commit/blacken-docs to 1.19.1. `#646 <https://github.com/dajiaji/python-cwt/pull/646>`__
35+
- Bump pre-commit/flake8 to 7.2.0. `#646 <https://github.com/dajiaji/python-cwt/pull/646>`__
36+
- Bump pre-commit/isort to 6.0.1. `#646 <https://github.com/dajiaji/python-cwt/pull/646>`__
37+
- Bump pre-commit/mirrors-mypy to 1.15.0. `#646 <https://github.com/dajiaji/python-cwt/pull/646>`__
38+
- Bump pre-commit to 4.2.0. `#646 <https://github.com/dajiaji/python-cwt/pull/646>`__
39+
- Bump requests to 2.32.4. `#646 <https://github.com/dajiaji/python-cwt/pull/646>`__
40+
741
Version 3.1.0
842
-------------
943

cwt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from .recipient import Recipient
2828
from .signer import Signer
2929

30-
__version__ = "3.1.0"
30+
__version__ = "3.2.0"
3131
__title__ = "cwt"
3232
__description__ = "A Python implementation of CWT/COSE"
3333
__url__ = "https://python-cwt.readthedocs.io"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "cwt"
7-
version = "3.1.0"
7+
version = "3.2.0"
88
description = "A Python implementation of CWT/COSE."
99
authors = ["Ajitomi Daisuke <dajiaji@gmail.com>"]
1010
license = "MIT"

0 commit comments

Comments
 (0)