diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a70c41..e2599f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.3.1] - 2023-01-04 + +### Performance + +- Use `writeln!` for better performance ([80addf6](80addf646c8196accd2445451cc3dc4eb6b911cd)) + ## [0.3.0] - 2023-01-03 ### Features diff --git a/Cargo.lock b/Cargo.lock index 1247c7c..afeeddf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -219,7 +219,7 @@ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" [[package]] name = "digs" -version = "0.3.0" +version = "0.3.1" dependencies = [ "assert_cmd", "assert_fs", diff --git a/Cargo.toml b/Cargo.toml index 04915c6..eaa3618 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "digs" -version = "0.3.0" +version = "0.3.1" authors = ["azzamsa "] categories = ["command-line-utilities"] edition = "2018"