diff --git a/CHANGELOG.md b/CHANGELOG.md index e2e596c..eb468e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v0.6.0 + +* Accept `"\t"` for tab as delimiter argument ([#49](https://github.com/YS-L/csvlens/pull/49) by @peterjc) +* Add `-t` flag for tsv files ([#47](https://github.com/YS-L/csvlens/pull/47) by @JojiiOfficial) +* Print lower level causes on error + # v0.5.1 * Fix panic caused by unicode and newline diff --git a/Cargo.lock b/Cargo.lock index 90e5b9c..642bc8b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -230,7 +230,7 @@ dependencies = [ [[package]] name = "csvlens" -version = "0.5.1" +version = "0.6.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index a422308..29a810d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "csvlens" -version = "0.5.1" +version = "0.6.0" authors = ["Yung Siang Liau "] license = "MIT" description = "Command line csv viewer"