Skip to content

Commit 5603d09

Browse files
authored
Merge pull request #472 from dajiaji/bump-to-v2_7_2
Bump version to 2.7.2.
2 parents 68de487 + d539e5c commit 5603d09

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGES.rst

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

7+
Version 2.7.2
8+
-------------
9+
10+
Released 2023-11-12
11+
12+
- Fix context string for countersignature. `#471 <https://github.com/dajiaji/python-cwt/pull/471>`__
13+
- Fix key_ops validation. `#470 <https://github.com/dajiaji/python-cwt/pull/471>`__
14+
- Update dev dependencies.
15+
- Bump sphinx-autodoc-typehints to 1.25.0. `#469 <https://github.com/dajiaji/python-cwt/pull/469>`__
16+
717
Version 2.7.1
818
-------------
919

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ implementation compliant with:
1313
- [RFC9053: CBOR Object Signing and Encryption (COSE): Initial Algorithms](https://www.rfc-editor.org/rfc/rfc9053.html)
1414
- [RFC9338: CBOR Object Signing and Encryption (COSE): Countersignatures](https://www.rfc-editor.org/rfc/rfc9338.html) - experimental
1515
- [RFC8392: CWT (CBOR Web Token)](https://tools.ietf.org/html/rfc8392)
16-
- [draft-06: Use of HPKE with COSE](https://www.ietf.org/archive/id/draft-ietf-cose-hpke-06.html) - experimental
16+
- [draft-07: Use of HPKE with COSE](https://www.ietf.org/archive/id/draft-ietf-cose-hpke-07.html) - experimental
1717
- [draft-06: CWT Claims in COSE Headers](https://www.ietf.org/archive/id/draft-ietf-cose-cwt-claims-in-headers-06.html) - experimental
1818
- and related various specifications. See [Referenced Specifications](#referenced-specifications).
1919

@@ -1746,7 +1746,7 @@ Python CWT is (partially) compliant with following specifications:
17461746
- [RFC8230: Using RSA Algorithms with COSE Messages](https://tools.ietf.org/html/rfc8230)
17471747
- [RFC9459: CBOR Object Signing and Encryption (COSE): AES-CTR and AES-CBC](https://www.rfc-editor.org/rfc/rfc9459.html) - experimental
17481748
- [RFC8152: CBOR Object Signing and Encryption (COSE)](https://tools.ietf.org/html/rfc8152)
1749-
- [draft-05: Use of HPKE with COSE](https://www.ietf.org/archive/id/draft-ietf-cose-hpke-06.html) - experimental
1749+
- [draft-07: Use of HPKE with COSE](https://www.ietf.org/archive/id/draft-ietf-cose-hpke-07.html) - experimental
17501750
- [draft-06: CWT Claims in COSE Headers](https://www.ietf.org/archive/id/draft-ietf-cose-cwt-claims-in-headers-06.html) - experimental
17511751
- [Electronic Health Certificate Specification](https://github.com/ehn-dcc-development/hcert-spec/blob/main/hcert_spec.md)
17521752
- [Technical Specifications for Digital Green Certificates Volume 1](https://ec.europa.eu/health/sites/default/files/ehealth/docs/digital-green-certificates_v1_en.pdf)

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

0 commit comments

Comments
 (0)