Skip to content

Commit 578a3c4

Browse files
authored
Merge pull request #578 from dajiaji/bump-to-v2_8_0
Bump version to 2.8.0.
2 parents a8b2926 + bd1d6bb commit 578a3c4

4 files changed

Lines changed: 29 additions & 4 deletions

File tree

CHANGES.rst

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

7+
Version 2.8.0
8+
-------------
9+
10+
Released 2024-10-26
11+
12+
- Add support for Python 3.13. `#577 <https://github.com/dajiaji/python-cwt/pull/577>`__
13+
- Drop support for Python 3.8. `#576 <https://github.com/dajiaji/python-cwt/pull/576>`__
14+
- Add enable_non_aead=False option for encode & decode. `#575 <https://github.com/dajiaji/python-cwt/pull/575>`__
15+
- Add option for Deterministic encoded protected and unprotected headers. `#574 <https://github.com/dajiaji/python-cwt/pull/574>`__
16+
- Fix link on README. `#552 <https://github.com/dajiaji/python-cwt/pull/552>`__
17+
- Rename github actions files. `#548 <https://github.com/dajiaji/python-cwt/pull/548>`__
18+
- Fix error on populating codecov token. `#547 <https://github.com/dajiaji/python-cwt/pull/547>`__
19+
- Update dependencies.
20+
- Bump cryptography to 43.0.3. `#569 <https://github.com/dajiaji/python-cwt/pull/569>`__
21+
- Bump cbor2 to 5.6.5. `#566 <https://github.com/dajiaji/python-cwt/pull/566>`__
22+
- Bump pyhpke to 0.5.4. `#543 <https://github.com/dajiaji/python-cwt/pull/543>`__
23+
- Update dev dependencies.
24+
- Bump tox to 4.23.2. `#535 <https://github.com/dajiaji/python-cwt/pull/572>`__
25+
- Bump pre-commit/black to 24.10.0. `#563 <https://github.com/dajiaji/python-cwt/pull/563>`__
26+
- Bump pre-commit/blacken-docs to 1.19.0. `#563 <https://github.com/dajiaji/python-cwt/pull/563>`__
27+
- Bump pre-commit/pre-commit-hooks to 5.0.0. `#563 <https://github.com/dajiaji/python-cwt/pull/563>`__
28+
- Bump pytest to 8.3.3. `#557 <https://github.com/dajiaji/python-cwt/pull/557>`__
29+
- Bump pre-commit/mirrors-mypy to 1.11.2. `#554 <https://github.com/dajiaji/python-cwt/pull/554>`__
30+
- Bump pre-commit/flake8 to 7.1.1. `#545 <https://github.com/dajiaji/python-cwt/pull/545>`__
31+
732
Version 2.7.5
833
-------------
934

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

0 commit comments

Comments
 (0)