Bump version to 0.0.6

This commit is contained in:
Jeremy Wall 2023-08-14 18:36:07 -04:00
parent b58c94e9e6
commit a57d6f9551
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "runwhen" name = "runwhen"
version = "0.0.5" version = "0.0.6"
authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"] authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"]
description = "Runs a command on user specified triggers." description = "Runs a command on user specified triggers."
repository = "https://github.com/zaphar/runwhen" repository = "https://github.com/zaphar/runwhen"
@ -14,4 +14,4 @@ notify = "4.0.17"
[dependencies.clap] [dependencies.clap]
version = "3.2.17" version = "3.2.17"
features = [ "cargo" ] features = [ "cargo" ]

View File

@ -26,9 +26,9 @@
defaultPackage = with pkgs; defaultPackage = with pkgs;
naersk-lib.buildPackage rec { naersk-lib.buildPackage rec {
pname = "runwhen"; pname = "runwhen";
version = "0.0.4"; version = "0.0.6";
src = ./.; src = ./.;
cargoBuildOptions = opts: opts ++ ["-p" "${pname}" ]; cargoBuildOptions = opts: opts ++ ["-p" "${pname}" ];
}; };
}); });
} }