diff --git a/CHANGELOG.md b/CHANGELOG.md index b564bc2..a7438df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.6.1 (2022-04-13) +### Fix +* Incorrect dependency versioning. ([`8eae45b`](https://github.com/TheWii/integrity/commit/8eae45bbd3585bc492e3cd5070eb0bf0a46ccf6a)) + ## v0.6.0 (2022-04-12) ### Feature * Function tags for `Component.on` with `tags` argument ([`367dda3`](https://github.com/TheWii/integrity/commit/367dda3793e9f1eaa495b639c4536be26c14f64a)) diff --git a/integrity/__init__.py b/integrity/__init__.py index fc9ed3f..a574b56 100644 --- a/integrity/__init__.py +++ b/integrity/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.6.0" +__version__ = "0.6.1" from .api import Integrity as _Integrity from .components import Components as _Components diff --git a/pyproject.toml b/pyproject.toml index e921c56..8845110 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "integrity" -version = "0.6.0" +version = "0.6.1" description = "Development facilities for the bolt environment" authors = ["TheWii"] license = "MIT"