Skip to content

Commit 5f6b6fe

Browse files
committed
Bump version to 3.1.0.
1 parent 987e36d commit 5f6b6fe

4 files changed

Lines changed: 32 additions & 4 deletions

File tree

CHANGES.rst

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

7+
Version 3.1.0
8+
-------------
9+
10+
Released 2025-07-21
11+
12+
- Add alg validation for fully-specified algs. `#621 <https://github.com/dajiaji/python-cwt/pull/621>`__
13+
- Update supported algorithms and specs. `#620 <https://github.com/dajiaji/python-cwt/pull/620>`__
14+
- Fix post_install in readthedocs config. `#616 <https://github.com/dajiaji/python-cwt/pull/616>`__
15+
- Add fully specified algorithms. `#612 <https://github.com/dajiaji/python-cwt/pull/612>`__
16+
- Refine pyproject.toml to use poetry groups. `#595 <https://github.com/dajiaji/python-cwt/pull/595>`__
17+
- Update dependencies.
18+
- Bump cryptography to 44.0.3. `#602 <https://github.com/dajiaji/python-cwt/pull/602>`__
19+
- Update dev dependencies.
20+
- Bump certifi to 2025.7.14. `#622 <https://github.com/dajiaji/python-cwt/pull/622>`__
21+
- Bump coverage to 7.9.2. `#622 <https://github.com/dajiaji/python-cwt/pull/622>`__
22+
- Bump tox to 4.28.0. `#622 <https://github.com/dajiaji/python-cwt/pull/622>`__
23+
- Bump urllib3 to 2.5.0. `#611 <https://github.com/dajiaji/python-cwt/pull/611>`__
24+
- Bump pytest to 8.4.1. `#610 <https://github.com/dajiaji/python-cwt/pull/610>`__
25+
- Bump pytest-cov to 6.2.1. `#608 <https://github.com/dajiaji/python-cwt/pull/608>`__
26+
- Bump requests to 2.32.4. `#606 <https://github.com/dajiaji/python-cwt/pull/606>`__
27+
- Bump pre-commit/black to 25.1.0. `#599 <https://github.com/dajiaji/python-cwt/pull/599>`__
28+
- Bump pre-commit/blacken-docs to 1.19.1. `#599 <https://github.com/dajiaji/python-cwt/pull/599>`__
29+
- Bump pre-commit/flake8 to 7.2.0. `#599 <https://github.com/dajiaji/python-cwt/pull/599>`__
30+
- Bump pre-commit/isort to 6.0.1. `#599 <https://github.com/dajiaji/python-cwt/pull/599>`__
31+
- Bump pre-commit/mirrors-mypy to 1.15.0. `#599 <https://github.com/dajiaji/python-cwt/pull/599>`__
32+
- Bump pre-commit to 4.2.0. `#597 <https://github.com/dajiaji/python-cwt/pull/597>`__
33+
34+
735
Version 3.0.0
836
-------------
937

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-
| 3.0.x | :white_check_mark: |
8-
| < 3 | :x: |
7+
| 3.1.x | :white_check_mark: |
8+
| < 3.1 | :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__ = "3.0.0"
30+
__version__ = "3.1.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 = "3.0.0"
7+
version = "3.1.0"
88
description = "A Python implementation of CWT/COSE."
99
authors = ["Ajitomi Daisuke <dajiaji@gmail.com>"]
1010
license = "MIT"

0 commit comments

Comments
 (0)