Skip to content

Commit 3462fd2

Browse files
authored
Merge pull request #453 from dajiaji/bump-to-v2_7_0
Bump version to v2.7.0.
2 parents 11bab82 + 1d454c1 commit 3462fd2

4 files changed

Lines changed: 27 additions & 4 deletions

File tree

CHANGES.rst

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

7+
Version 2.7.0
8+
-------------
9+
10+
Released 2023-10-20
11+
12+
- Fix to_cis to convert protected from Dict[str, Any] to Dict[int, Any]. `#452 <https://github.com/dajiaji/python-cwt/pull/452>`__
13+
- Add detached_payload parameter to sign/verify funcs. `#451 <https://github.com/dajiaji/python-cwt/pull/451>`__
14+
- Fix detach&attach not to create new COSEMessage instance. `#447 <https://github.com/dajiaji/python-cwt/pull/447>`__
15+
- Remove Self from COSEMessage. `#446 <https://github.com/dajiaji/python-cwt/pull/446>`__
16+
- Update test for COSE-HPKE. `#445 <https://github.com/dajiaji/python-cwt/pull/445>`__
17+
- Add detached content converter. `#444 <https://github.com/dajiaji/python-cwt/pull/444>`__
18+
- Add ECDH-ES+AES-KW test. `#443 <https://github.com/dajiaji/python-cwt/pull/443>`__
19+
- Parametrize test for AES-KW/HPKE and CTR/CBC. `#442 <https://github.com/dajiaji/python-cwt/pull/442>`__
20+
- Add AES-CTR and AES-CBC support. `#441 <https://github.com/dajiaji/python-cwt/pull/441>`__
21+
- Allow AES-KW algorithm in context. `#439 <https://github.com/dajiaji/python-cwt/pull/439>`__
22+
- Update dev dependencies.
23+
- Bump urllib3 to 2.0.6. `#450 <https://github.com/dajiaji/python-cwt/pull/450>`__
24+
- Bump pre-commit/mirrors-mypy to 1.5.1. `#449 <https://github.com/dajiaji/python-cwt/pull/449>`__
25+
- Bump pre-commit to 3.5.0. `#448 <https://github.com/dajiaji/python-cwt/pull/448>`__
26+
- Bump pre-commit/black to 23.9.1. `#438 <https://github.com/dajiaji/python-cwt/pull/438>`__
27+
- Bump pre-commit/pre-commit-hooks to 4.5.0. `#438 <https://github.com/dajiaji/python-cwt/pull/438>`__
28+
729
Version 2.6.0
830
-------------
931

@@ -16,6 +38,7 @@ Released 2023-10-09
1638
- Fix typo of private attribute. `#435 <https://github.com/dajiaji/python-cwt/pull/435>`__
1739
- Update dev dependencies.
1840
- Bump urllib3 to 2.0.6. `#436 <https://github.com/dajiaji/python-cwt/pull/436>`__
41+
- Bump pre-commit/mirrors-mypy to 1.5.1. `#434 <https://github.com/dajiaji/python-cwt/pull/434>`__
1942

2043
Version 2.5.1
2144
-------------

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7-
| 2.6.x | :white_check_mark: |
8-
| < 2.6 | :x: |
7+
| 2.7.x | :white_check_mark: |
8+
| < 2.7 | :x: |
99

1010
## Reporting a Vulnerability
1111

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

0 commit comments

Comments
 (0)