diff --git a/CHANGELOG.md b/CHANGELOG.md index 6192078..70ccacc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.9.0 (2022-08-02) +### Feature +* Add hooks ([`060c78c`](https://github.com/TheWii/integrity/commit/060c78c55ab65600601fd7561f7fe91ae30001d2)) + ## v0.8.0 (2022-06-18) ### Feature * Component method decorators ([`af94217`](https://github.com/TheWii/integrity/commit/af94217292e1824f42ddad5df9e2cc2eb679797a)) diff --git a/integrity/__init__.py b/integrity/__init__.py index 01745e9..80a43db 100644 --- a/integrity/__init__.py +++ b/integrity/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.8.0" +__version__ = "0.9.0" from .api import Integrity as _Integrity from .components import Components as _Components diff --git a/pyproject.toml b/pyproject.toml index a1cdddd..d8ff635 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "integrity" -version = "0.8.0" +version = "0.9.0" description = "Development facilities for the bolt environment" authors = ["TheWii"] license = "MIT"