From 14ad98d49434a8850af1ae0efe010061e61a51eb Mon Sep 17 00:00:00 2001 From: Ajitomi Daisuke Date: Sat, 25 Nov 2023 06:28:01 +0900 Subject: [PATCH] Bump version to 2.7.3. --- CHANGES.rst | 14 ++++++++++++++ SECURITY.md | 2 +- cwt/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4682c35..21555a8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,20 @@ Changes Unreleased ---------- +Version 2.7.3 +------------- + +Released 2023-11-25 + +- Fix readthedocs error. `#480 `__ +- Tighten the range of pyca/cryptography version. `#476 `__ +- Add support for Python 3.12 on tox. `#475 `__ +- Update dev dependencies. + - Bump actions/{checkout, setup-python} to v4. `#477 `__ + - Bump pre-commit/mirrors-mypy to 1.7.0. `#474 `__ + - Bump pre-commit/black to 23.11.0. `#474 `__ + - Bump sphinx-autodoc-typehints to 1.25.2. `#473 `__ + Version 2.7.2 ------------- diff --git a/SECURITY.md b/SECURITY.md index 3a22a82..b5a0afa 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -5,7 +5,7 @@ | Version | Supported | | ------- | ------------------ | | 2.7.x | :white_check_mark: | -| < 2.7 | :x: | +| < 2.7 | :x: | ## Reporting a Vulnerability diff --git a/cwt/__init__.py b/cwt/__init__.py index ae1470f..8b7adf4 100644 --- a/cwt/__init__.py +++ b/cwt/__init__.py @@ -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" diff --git a/pyproject.toml b/pyproject.toml index a21622a..75504cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT"