diff --git a/CHANGELOG.md b/CHANGELOG.md index 544818e..2495ff0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,14 +3,6 @@ Will not contain minor changes -- feel free to look through `git log` for more detail. -## v0.8.0 :: 20240219 - -- Force keyword arguments in `CommandLinePlugin` as done elsewhere - - This is really the only cause of the "highest nonzero version number" bump -- Fix plugins not passing `initial_state` to parent class (https://github.com/n8henrie/fauxmo/issues/122) -- Tweaks to nix development environment -- Add coverage testing to `tests/` to ensure all testing code paths are taken - ## v0.7.0 :: 20230825 - Add `initial_state` kwarg for plugins diff --git a/src/fauxmo/__init__.py b/src/fauxmo/__init__.py index 12af1c1..adc24ea 100644 --- a/src/fauxmo/__init__.py +++ b/src/fauxmo/__init__.py @@ -5,7 +5,7 @@ __author__ = "Nathan Henrie" __email__ = "nate@n8henrie.com" -__version__ = "v0.8.0" +__version__ = "v0.7.0" logging.basicConfig( level=logging.INFO,