Skip to content

Commit 4e84f0e

Browse files
committed
Bump version to 2.7.1.
1 parent 281c742 commit 4e84f0e

3 files changed

Lines changed: 22 additions & 2 deletions

File tree

CHANGES.rst

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

7+
Version 2.7.1
8+
-------------
9+
10+
Released 2023-11-09
11+
12+
- Fix recipient encoding with empty protected header. `#467 <https://github.com/dajiaji/python-cwt/pull/467>`__
13+
- Fix nonce modification test. `#466 <https://github.com/dajiaji/python-cwt/pull/466>`__
14+
- Accept zero length map protected header. `#465 <https://github.com/dajiaji/python-cwt/pull/465>`__
15+
- Generate zero-length protected header for non-AEAD. `#463 <https://github.com/dajiaji/python-cwt/pull/463>`__
16+
- Update dependencies.
17+
- Bump cbor2 to 5.5.1. `#461 <https://github.com/dajiaji/python-cwt/pull/461>`__
18+
- Bump pyhpke to 0.5.1. `#459 <https://github.com/dajiaji/python-cwt/pull/459>`__
19+
- Bump cryptography to 41.0.5. `#457 <https://github.com/dajiaji/python-cwt/pull/457>`__
20+
- Update dev dependencies.
21+
- Bump sphinx-autodoc-typehints to 1.24.1. `#460 <https://github.com/dajiaji/python-cwt/pull/460>`__
22+
- Bump pytest to 7.4.3. `#456 <https://github.com/dajiaji/python-cwt/pull/456>`__
23+
- Bump pre-commit/mirrors-mypy to 1.5.1. `#449 <https://github.com/dajiaji/python-cwt/pull/449>`__
24+
- Bump pre-commit/black to 23.10.1. `#455 <https://github.com/dajiaji/python-cwt/pull/455>`__
25+
- Bump pre-commit/mirrors-mypy to 1.6.1. `#455 <https://github.com/dajiaji/python-cwt/pull/455>`__
26+
727
Version 2.7.0
828
-------------
929

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__ = "2.7.0"
30+
__version__ = "2.7.1"
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 = "2.7.0"
7+
version = "2.7.1"
88
description = "A Python implementation of CWT/COSE."
99
authors = ["Ajitomi Daisuke <dajiaji@gmail.com>"]
1010
license = "MIT"

0 commit comments

Comments
 (0)