diff --git a/CHANGELOG.md b/CHANGELOG.md index 42d15d9..d2f1e3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.4.1 - Additions: - Python template defaults to adding a 'format = "setuptools";' to align with nixpkgs preferences diff --git a/Cargo.lock b/Cargo.lock index 944330f..3751128 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -533,7 +533,7 @@ dependencies = [ [[package]] name = "nix-template" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 1ad1c93..19618c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nix-template" -version = "0.4.0" +version = "0.4.1" description = "Utility to generate common nix expressions" license = "CC0-1.0" homepage = "https://github.com/jonringer/nix-template" diff --git a/src/cli.rs b/src/cli.rs index 675df46..8fcfaa0 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -26,7 +26,7 @@ pub fn assert(pred: bool, message: &str) { pub fn build_cli() -> App<'static, 'static> { App::new("nix-template") - .version("0.4.0") + .version("0.4.1") .author("Jon Ringer ") .about("Create common nix expressions") .version_short("V")