diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dba639..358e98c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.2.0 +> 2018-11-23 + +Minor refactoring of how the command line arguments work, instead of using +subcommands we instead only have a single flag (`--list`) to toggle whether +you're listing available templates or getting them. The rest are comments and +behind-the-scenes fixes. + +* [[`fe802b4888`](https://github.com/sondr3/git-ignore/commit/fe802b4888)] - Document all the things! +* [[`dfd8bbb235`](https://github.com/sondr3/git-ignore/commit/dfd8bbb235)] - Deny stupid things I shouldn't do +* [[`710779fa05`](https://github.com/sondr3/git-ignore/commit/710779fa05)] - Update README \[ci skip\] +* [[`44b49163f2`](https://github.com/sondr3/git-ignore/commit/44b49163f2)] - Go from subcommands to flags instead, because it makes more sense +* [[`2bd95735db`](https://github.com/sondr3/git-ignore/commit/2bd95735db)] - Add changelog \[ci skip\] + ## 0.1.1 > 2018-11-05 diff --git a/Cargo.lock b/Cargo.lock index 165048d..2f691f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ dependencies = [ [[package]] name = "git-ignore-generator" -version = "0.1.1" +version = "0.2.0" dependencies = [ "reqwest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index c2147d2..4fb82de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-ignore-generator" -version = "0.1.1" +version = "0.2.0" authors = ["Sondre Nilsen "] homepage = "https://github.com/sondr3/git-ignore" description = "Quickly and easily fetch .gitignore templates from www.gitignore.io"