diff --git a/flake.nix b/flake.nix index ba95df3..648b3cc 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,7 @@ default = matebot; matebot = pkgs.python3Packages.buildPythonApplication { pname = "matebot"; - version = "0.2.2"; + version = "0.3.0"; pyproject = true; src = self; build-system = [ pkgs.python3Packages.hatchling ]; @@ -90,7 +90,7 @@ wantedBy = [ "multi-user.target" ]; after = [ "network-online.target" ]; wants = [ "network-online.target" ]; - path = [ pkgs.git pkgs.openssh ]; + path = [ pkgs.git pkgs.openssh pkgs.ffmpeg-headless ]; environment = { MATEBOT_MACHINE_HOST = cfg.machineHost; MATEBOT_MESSENGER = cfg.messenger; diff --git a/pyproject.toml b/pyproject.toml index 915046e..8423e84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "matebot" -version = "0.2.2" +version = "0.3.0" description = "The proactive companion for GaggiMate espresso machines: post-shot logging bot, .slog decoder, shot-journal site generator" readme = "README.md" license = "MIT" diff --git a/src/matebot/__init__.py b/src/matebot/__init__.py index 3581b52..40bb6aa 100644 --- a/src/matebot/__init__.py +++ b/src/matebot/__init__.py @@ -1,3 +1,3 @@ """matebot — the proactive companion for GaggiMate espresso machines.""" -__version__ = "0.2.2" +__version__ = "0.3.0"