From 188d35c4646f8446735eeefccd4866d5dc66a7dc Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sun, 18 Jul 2021 13:34:15 -0700 Subject: [PATCH] Bump to 0.1.4 --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- nix/nix-template.nix | 2 +- src/cli.rs | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40dd402..d592e34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.1.4 + +- Cleanup pypi noise + ## v0.1.3 - Fix Cargo.lock file diff --git a/Cargo.lock b/Cargo.lock index 286d1eb..16d451d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -497,7 +497,7 @@ dependencies = [ [[package]] name = "nix-template" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 7f5ca5c..808a69e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nix-template" -version = "0.1.3" +version = "0.1.4" description = "Utility to generate common nix expressions" license = "CC0-1.0" homepage = "https://github.com/jonringer/nix-template" diff --git a/nix/nix-template.nix b/nix/nix-template.nix index 9607561..47c670b 100644 --- a/nix/nix-template.nix +++ b/nix/nix-template.nix @@ -6,7 +6,7 @@ rustPlatform.buildRustPackage rec { src = nix-gitignore.gitignoreSource [] ../.; # this will need to be updated anytime Cargo.lock gets changed - cargoSha256 = "sha256-U/udYh7LcN6xHjcpOqB45fLUmjwXYDVDQ20RX1rHdWM="; + cargoSha256 = "sha256-K/8qhFroZDv39+jsjJu/n45bvWwX9KYQnNSxIbNR5CI="; nativeBuildInputs = [ pkg-config makeWrapper ]; buildInputs = [ openssl ]; diff --git a/src/cli.rs b/src/cli.rs index 7d26497..2d0ac80 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -15,7 +15,7 @@ where pub fn build_cli() -> App<'static, 'static> { App::new("nix-template") - .version("0.1.3") + .version("0.1.4") .author("Jon Ringer ") .about("Create common nix expressions") .version_short("V")