Skip to content

Commit 3925ba2

Browse files
committed
Bump version up to v2.5.0.
1 parent a6f139a commit 3925ba2

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

CHANGES.rst

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

7+
Version 2.5.0
8+
-------------
9+
10+
Released 2023-09-09
11+
12+
- Update IETF I-D references in README. `#412 <https://github.com/dajiaji/python-cwt/pull/412>`__
13+
- Add enum COSEKeyParams. `#411 <https://github.com/dajiaji/python-cwt/pull/411>`__
14+
- Add enum COSEAlgs. `#409 <https://github.com/dajiaji/python-cwt/pull/409>`__
15+
- Update dependencies.
16+
- Bump cryptography to 41.0.3. `#416 <https://github.com/dajiaji/python-cwt/pull/416>`__
17+
- Update dev dependencies.
18+
- Bump pytest to 7.4.2. `#430 <https://github.com/dajiaji/python-cwt/pull/430>`__
19+
- Bump tox to 4.11.2. `#429 <https://github.com/dajiaji/python-cwt/pull/429>`__
20+
- Bump pre-commit to 3.4.0. `#427 <https://github.com/dajiaji/python-cwt/pull/427>`__
21+
- Bump sphinx-autodoc-typehints to 1.24.0. `#424 <https://github.com/dajiaji/python-cwt/pull/424>`__
22+
- Bump sphinx to 7.1.2. `#423 <https://github.com/dajiaji/python-cwt/pull/423>`__
23+
- Bump certifi to 2023.7.22. `#422 <https://github.com/dajiaji/python-cwt/pull/422>`__
24+
- Bump sphinx-rtd-theme to 1.3.0. `#420 <https://github.com/dajiaji/python-cwt/pull/420>`__
25+
- Bump pre-commit/blacken-docs to 1.15.0. `#413 <https://github.com/dajiaji/python-cwt/pull/413>`__
26+
- Bump pre-commit/black to 23.7.0. `#413 <https://github.com/dajiaji/python-cwt/pull/413>`__
27+
728
Version 2.4.0
829
-------------
930

SECURITY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7-
| 2.4.x | :white_check_mark: |
8-
| < 2.4 | :x: |
7+
| 2.5.x | :white_check_mark: |
8+
| < 2.5 | :x: |
99

1010
## Reporting a Vulnerability
1111

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

0 commit comments

Comments
 (0)