Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
n8henrie committed Feb 19, 2024
1 parent 34373cd commit 0059bf3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
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
Expand Down
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@
uvloop
(buildPythonPackage {
inherit pname;
version = builtins.head (lib.findFirst (v: v != null) null (builtins.map (builtins.match "^__version__ = \"(.*)\"") (lib.splitString "\n" (builtins.readFile ./src/fauxmo/__init__.py))));
version =
builtins.head
(lib.findFirst (v: v != null)
null (builtins.map
(builtins.match "^__version__ = \"(.*)\"")
(lib.splitString "\n" (builtins.readFile ./src/fauxmo/__init__.py))));
src = ./.;
format = "pyproject";
propagatedBuildInputs = [setuptools];
Expand Down
2 changes: 1 addition & 1 deletion src/fauxmo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

__author__ = "Nathan Henrie"
__email__ = "nate@n8henrie.com"
__version__ = "v0.7.0"
__version__ = "v0.8.0"

logging.basicConfig(
level=logging.INFO,
Expand Down

0 comments on commit 0059bf3

Please sign in to comment.