Skip to content

Commit 8dff9d2

Browse files
authored
Merge pull request #358 from dajiaji/bump-to-2_3_0
Bump up version to 2.3.0.
2 parents 4f885e3 + 79b785c commit 8dff9d2

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGES.rst

+22
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ Changes
44
Unreleased
55
----------
66

7+
Version 2.3.0
8+
-------------
9+
10+
Released 2023-02-18
11+
12+
- Remove unused log. `#355 <https://github.com/dajiaji/python-cwt/pull/355>`__
13+
- Change HPKE sender information from dict to list. `#354 <https://github.com/dajiaji/python-cwt/pull/354>`__
14+
- Add SECURITY.md. `#352 <https://github.com/dajiaji/python-cwt/pull/352>`__
15+
- Remove unused function in CBORProcessor. `#333 <https://github.com/dajiaji/python-cwt/pull/333>`__
16+
- Fix link to readthedocs. `#326 <https://github.com/dajiaji/python-cwt/pull/326>`__
17+
- Update dependencies.
18+
- Bump cryptography from 39.0.1. `#357 <https://github.com/dajiaji/python-cwt/pull/357>`__
19+
- Bump pyhpke from 0.4.1. `#356 <https://github.com/dajiaji/python-cwt/pull/356>`__
20+
- Update dev dependencies.
21+
- Bump sphinx-rtd-theme to 1.2.0. `#351 <https://github.com/dajiaji/python-cwt/pull/351>`__
22+
- Bump tox to 4.4.5. `#350 <https://github.com/dajiaji/python-cwt/pull/350>`__
23+
- Bump pre-commit/black to 23.1.0. `#349 <https://github.com/dajiaji/python-cwt/pull/349>`__
24+
- Bump pre-commit/isort to 5.12.0. `#346 <https://github.com/dajiaji/python-cwt/pull/346>`__
25+
- Bump pre-commit/blacken-docs to 1.13.0. `#341 <https://github.com/dajiaji/python-cwt/pull/341>`__
26+
- Bump sphinx-autodoc-typehints to 1.21.0. `#340 <https://github.com/dajiaji/python-cwt/pull/340>`__
27+
- Bump pytest to 7.2.1. `#338 <https://github.com/dajiaji/python-cwt/pull/338>`__
28+
729
Version 2.2.0
830
-------------
931

cwt/__init__.py

+1-1
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.2.0"
21+
__version__ = "2.3.0"
2222
__title__ = "cwt"
2323
__description__ = "A Python implementation of CWT/COSE"
2424
__url__ = "https://python-cwt.readthedocs.io"

pyproject.toml

+1-1
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.2.0"
7+
version = "2.3.0"
88
description = "A Python implementation of CWT/COSE."
99
authors = ["Ajitomi Daisuke <[email protected]>"]
1010
license = "MIT"

0 commit comments

Comments
 (0)