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"

View File

@ -26,7 +26,7 @@
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}" ];
}; };