diff --git a/CHANGES.rst b/CHANGES.rst index 839f664..6932cda 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,21 @@ Changes Unreleased ---------- +Version 1.5.4 +------------- + +Released 2022-04-03 + +- Update dependencies. + - Bump pre-commit from 0.930 to 0.942. `#221 `__. + - Bump sphinx from 4.3.2 to 4.5.0. `#220 `__. + - Bump asn1crypto from 1.4.0 to 1.5.1. `#218 `__. + - Bump cryptography from 36.0.1 to 36.0. `#217 `__. + - Bump pytest from 6.2.5 to 7.0.1. `#213 `__. + - Bump cbor2 from 5.4.2 to 5.4.2.post1. `#211 `__. +- Add pre-commit hooks for checking json, toml and yaml files. `#207 `__ +- Migrate mypy to pre-commit. `#206 `__ + Version 1.5.3 ------------- diff --git a/cwt/__init__.py b/cwt/__init__.py index c468c1f..d4dd95c 100644 --- a/cwt/__init__.py +++ b/cwt/__init__.py @@ -16,7 +16,7 @@ from .recipient import Recipient from .signer import Signer -__version__ = "1.5.3" +__version__ = "1.5.4" __title__ = "cwt" __description__ = "A Python implementation of CWT/COSE" __url__ = "https://python-cwt.readthedocs.io" diff --git a/pyproject.toml b/pyproject.toml index d193875..6bdabd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "cwt" -version = "1.5.3" +version = "1.5.4" description = "A Python implementation of CWT/COSE." authors = ["Ajitomi Daisuke "] license = "MIT"