Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 2.7.1. #468

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ Changes
Unreleased
----------

Version 2.7.1
-------------

Released 2023-11-09

- Fix recipient encoding with empty protected header. `#467 <https://github.com/dajiaji/python-cwt/pull/467>`__
- Fix nonce modification test. `#466 <https://github.com/dajiaji/python-cwt/pull/466>`__
- Accept zero length map protected header. `#465 <https://github.com/dajiaji/python-cwt/pull/465>`__
- Generate zero-length protected header for non-AEAD. `#463 <https://github.com/dajiaji/python-cwt/pull/463>`__
- Update dependencies.
- Bump cbor2 to 5.5.1. `#461 <https://github.com/dajiaji/python-cwt/pull/461>`__
- Bump pyhpke to 0.5.1. `#459 <https://github.com/dajiaji/python-cwt/pull/459>`__
- Bump cryptography to 41.0.5. `#457 <https://github.com/dajiaji/python-cwt/pull/457>`__
- Update dev dependencies.
- Bump sphinx-autodoc-typehints to 1.24.1. `#460 <https://github.com/dajiaji/python-cwt/pull/460>`__
- Bump pytest to 7.4.3. `#456 <https://github.com/dajiaji/python-cwt/pull/456>`__
- Bump pre-commit/mirrors-mypy to 1.5.1. `#449 <https://github.com/dajiaji/python-cwt/pull/449>`__
- Bump pre-commit/black to 23.10.1. `#455 <https://github.com/dajiaji/python-cwt/pull/455>`__
- Bump pre-commit/mirrors-mypy to 1.6.1. `#455 <https://github.com/dajiaji/python-cwt/pull/455>`__

Version 2.7.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion cwt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from .recipient import Recipient
from .signer import Signer

__version__ = "2.7.0"
__version__ = "2.7.1"
__title__ = "cwt"
__description__ = "A Python implementation of CWT/COSE"
__url__ = "https://python-cwt.readthedocs.io"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "cwt"
version = "2.7.0"
version = "2.7.1"
description = "A Python implementation of CWT/COSE."
authors = ["Ajitomi Daisuke <dajiaji@gmail.com>"]
license = "MIT"
Expand Down
Loading