diff --git a/CHANGELOG.md b/CHANGELOG.md index 51e5869..4f4c5e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # Changelog -## Unreleased +## v0.1.2 - Add `-u, --from-url` support to pypi.org +- Fix crash when github's hompage url is null when used with `-u` +- Add mention of `GITHUB_TOKEN` to usage ## v0.1.1 diff --git a/Cargo.toml b/Cargo.toml index 1370ae8..48171ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nix-template" -version = "0.1.1" +version = "0.1.2" 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 6f1365f..d714b6c 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.1") + .version("0.1.2") .author("Jon Ringer ") .about("Create common nix expressions") .version_short("V")