From 3b881f783fb2ead83eb956efa41aabdfa017ec39 Mon Sep 17 00:00:00 2001 From: Ajitomi Daisuke Date: Sat, 3 Aug 2024 21:40:51 +0900 Subject: [PATCH] Bump version to 2.7.5. --- CHANGES.rst | 28 ++++++++++++++++++++++++++++ cwt/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 82d13f1..239be7d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,34 @@ Changes Unreleased ---------- +Version 2.7.5 +------------- + +Released 2024-08-03 + +- Add Python 3.12 to CI. `#499 `__ +- Update dependencies. + - Bump cbor2 to 5.6.4. `#533 `__ + - Bump cryptography to 42.0.5. `#512 `__ +- Update dev dependencies. + - Bump codecov/codecov-action to v4. `#541 `__ + - Bump setuptools to 70.0.0. `#538 `__ + - Bump zipp to 3.19.1. `#537 `__ + - Bump certifi to 2024.7.4. `#536 `__ + - Bump tox to 4.16.0. `#535 `__ + - Bump urllib3 to 2.2.2. `#534 `__ + - Bump requests to 2.32.0. `#530 `__ + - Bump jinja2 to 3.1.4. `#528 `__ + - Bump idna to 3.7. `#525 `__ + - Bump sphinx-autodoc-typehints to 2.0.1. `#524 `__ + - Bump blacken-docs to 1.18.0. `#522 `__ + - Bump pre-commit/black to 24.4.2. `#522 `__ + - Bump pre-commit/flake8 to 7.1.0. `#522 `__ + - Bump pre-commit/mirrors-mypy to 1.10.0. `#522 `__ + - Bump pre-commit/pre-commit-hooks to 4.6.0. `#522 `__ + - Bump pytest-cov to 5.0.0. `#519 `__ + - Bump pytest to 8.1.1. `#516 `__ + Version 2.7.4 ------------- diff --git a/cwt/__init__.py b/cwt/__init__.py index b6b84d2..1887fee 100644 --- a/cwt/__init__.py +++ b/cwt/__init__.py @@ -27,7 +27,7 @@ from .recipient import Recipient from .signer import Signer -__version__ = "2.7.4" +__version__ = "2.7.5" __title__ = "cwt" __description__ = "A Python implementation of CWT/COSE" __url__ = "https://python-cwt.readthedocs.io" diff --git a/pyproject.toml b/pyproject.toml index 6b7c1e4..3e30687 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "cwt" -version = "2.7.4" +version = "2.7.5" description = "A Python implementation of CWT/COSE." authors = ["Ajitomi Daisuke "] license = "MIT"