diff --git a/CHANGELOG.md b/CHANGELOG.md index d29d5af..8c7ac2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ # Changelog + +## v0.1.0 (2022-10-09) +### Feature +* Apply a preconfigured theme onto one or more LIFX lights ([`f0e4397`](https://github.com/Djelibeybi/aiolifx-themes/commit/f0e4397dd6ea29f001f5518d41691ecc1d9770e0)) diff --git a/pyproject.toml b/pyproject.toml index b3005c2..e611159 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiolifx-themes" -version = "0.0.0" +version = "0.1.0" description = "Async library that applies color themes to LIFX lights" authors = ["Avi Miller "] license = "MIT" diff --git a/src/aiolifx_themes/__init__.py b/src/aiolifx_themes/__init__.py index 6c8e6b9..3dc1f76 100644 --- a/src/aiolifx_themes/__init__.py +++ b/src/aiolifx_themes/__init__.py @@ -1 +1 @@ -__version__ = "0.0.0" +__version__ = "0.1.0"