Skip to content

Commit 627c70a

Browse files
authored
Merge pull request #367 from dajiaji/bump-to-2_3_1
Bump version up to 2.3.1.
2 parents f0d0722 + 46104f2 commit 627c70a

4 files changed

Lines changed: 18 additions & 3 deletions

File tree

CHANGES.rst

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

7+
Version 2.3.1
8+
-------------
9+
10+
Released 2023-03-25
11+
12+
- Fix HPKE sample. `#362 <https://github.com/dajiaji/python-cwt/pull/362>`__
13+
- Update dependencies.
14+
- Bump cryptography from 39.0.2. `#363 <https://github.com/dajiaji/python-cwt/pull/363>`__
15+
- Update dev dependencies.
16+
- Bump pre-commit/mirrors-mypy to 1.1.1. `#366 <https://github.com/dajiaji/python-cwt/pull/366>`__
17+
- Bump tox to 4.4.7. `#365 <https://github.com/dajiaji/python-cwt/pull/365>`__
18+
- Bump pytest to 7.2.2. `#364 <https://github.com/dajiaji/python-cwt/pull/364>`__
19+
720
Version 2.3.0
821
-------------
922

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +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-04: Use of HPKE with COSE](https://www.ietf.org/archive/id/draft-ietf-cose-hpke-04.html) - experimental
1617
- and related various specifications. See [Referenced Specifications](#referenced-specifications).
1718

1819
It is designed to make users who already know about [JWS](https://tools.ietf.org/html/rfc7515)/[JWE](https://tools.ietf.org/html/rfc7516)/[JWT](https://tools.ietf.org/html/rfc7519)
@@ -1666,12 +1667,13 @@ Python CWT is (partially) compliant with following specifications:
16661667

16671668
- [RFC9052: CBOR Object Signing and Encryption (COSE): Structures and Process](https://www.rfc-editor.org/rfc/rfc9052.html)
16681669
- [RFC9053: CBOR Object Signing and Encryption (COSE): Initial Algorithms](https://www.rfc-editor.org/rfc/rfc9053.html)
1669-
- [RFC9338: CBOR Object Signing and Encryption (COSE): Countersignatures](https://www.rfc-editor.org/rfc/rfc9338.html)
1670+
- [RFC9338: CBOR Object Signing and Encryption (COSE): Countersignatures](https://www.rfc-editor.org/rfc/rfc9338.html) - experimental
16701671
- [RFC8812: COSE and JOSE Registrations for Web Authentication (WebAuthn) Algorithms](https://tools.ietf.org/html/rfc8812)
16711672
- [RFC8747: Proof-of-Possession Key Semantics for CBOR Web Tokens (CWTs)](https://tools.ietf.org/html/rfc8747)
16721673
- [RFC8392: CWT (CBOR Web Token)](https://tools.ietf.org/html/rfc8392)
16731674
- [RFC8230: Using RSA Algorithms with COSE Messages](https://tools.ietf.org/html/rfc8230)
16741675
- [RFC8152: CBOR Object Signing and Encryption (COSE)](https://tools.ietf.org/html/rfc8152)
1676+
- [draft-04: Use of HPKE with COSE](https://www.ietf.org/archive/id/draft-ietf-cose-hpke-04.html) - experimental
16751677
- [Electronic Health Certificate Specification](https://github.com/ehn-dcc-development/hcert-spec/blob/main/hcert_spec.md)
16761678
- [Technical Specifications for Digital Green Certificates Volume 1](https://ec.europa.eu/health/sites/default/files/ehealth/docs/digital-green-certificates_v1_en.pdf)
16771679

cwt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .recipient import Recipient
1919
from .signer import Signer
2020

21-
__version__ = "2.3.0"
21+
__version__ = "2.3.1"
2222
__title__ = "cwt"
2323
__description__ = "A Python implementation of CWT/COSE"
2424
__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.3.0"
7+
version = "2.3.1"
88
description = "A Python implementation of CWT/COSE."
99
authors = ["Ajitomi Daisuke <dajiaji@gmail.com>"]
1010
license = "MIT"

0 commit comments

Comments
 (0)