Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/matebot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""matebot — the proactive companion for GaggiMate espresso machines."""

__version__ = "0.2.2"
__version__ = "0.3.0"
Loading