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.3. #481

Merged
merged 1 commit into from
Nov 25, 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
14 changes: 14 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ Changes
Unreleased
----------

Version 2.7.3
-------------

Released 2023-11-25

- Fix readthedocs error. `#480 <https://github.com/dajiaji/python-cwt/pull/480>`__
- Tighten the range of pyca/cryptography version. `#476 <https://github.com/dajiaji/python-cwt/pull/476>`__
- Add support for Python 3.12 on tox. `#475 <https://github.com/dajiaji/python-cwt/pull/475>`__
- Update dev dependencies.
- Bump actions/{checkout, setup-python} to v4. `#477 <https://github.com/dajiaji/python-cwt/pull/477>`__
- Bump pre-commit/mirrors-mypy to 1.7.0. `#474 <https://github.com/dajiaji/python-cwt/pull/474>`__
- Bump pre-commit/black to 23.11.0. `#474 <https://github.com/dajiaji/python-cwt/pull/474>`__
- Bump sphinx-autodoc-typehints to 1.25.2. `#473 <https://github.com/dajiaji/python-cwt/pull/473>`__

Version 2.7.2
-------------

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
| Version | Supported |
| ------- | ------------------ |
| 2.7.x | :white_check_mark: |
| < 2.7 | :x: |
| < 2.7 | :x: |

## Reporting a Vulnerability

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.2"
__version__ = "2.7.3"
__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.2"
version = "2.7.3"
description = "A Python implementation of CWT/COSE."
authors = ["Ajitomi Daisuke <[email protected]>"]
license = "MIT"
Expand Down
Loading