diff options
author | Teddy Wing | 2020-10-08 23:22:26 +0200 |
---|---|---|
committer | Teddy Wing | 2020-10-08 23:35:04 +0200 |
commit | 295f77eb3ec7a0fe210ff0af7e231a0672d54b04 (patch) | |
tree | 27e03a83a44ecfb199eb25738af152c41ff8307e | |
parent | d37865a1f33a4ca0da06b71077000f5f4c52dee4 (diff) | |
download | git-todo-295f77eb3ec7a0fe210ff0af7e231a0672d54b04.tar.bz2 |
Increase version v0.0.1 -> v0.0.2v0.0.2
-rw-r--r-- | CHANGELOG | 13 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..f4cd915 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,13 @@ +CHANGELOG +========= + +v0.0.2 (2020-10-08): + Fixes: + + * The command now works in subdirectories of a repository. + * TODO lines in untracked files are now included in the output. + +v0.0.1 (2020-10-03): + First public release. + + vim:tw=80:comments=:fo+=n:formatlistpat=^\\s*\\*\\s* @@ -44,7 +44,7 @@ dependencies = [ [[package]] name = "git-todo" -version = "0.0.1" +version = "0.0.2" dependencies = [ "exitcode", "getopts", @@ -1,6 +1,6 @@ [package] name = "git-todo" -version = "0.0.1" +version = "0.0.2" edition = "2018" [dependencies] |