diff --git a/CHANGELOG.md b/CHANGELOG.md index 39383e9..b673729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.7.2](https://github.com/yuuki/lstf/compare/v0.7.1...v0.7.2) (2021-03-14) + +* fix ENOENT error because of TOCTOU [#31](https://github.com/yuuki/lstf/pull/31) ([yuuki](https://github.com/yuuki)) + ## [v0.7.1](https://github.com/yuuki/lstf/compare/v0.7.0...v0.7.1) (2021-03-14) * avoid too many open files error [#30](https://github.com/yuuki/lstf/pull/30) ([yuuki](https://github.com/yuuki)) diff --git a/version.go b/version.go index cf23de0..dc5a85b 100644 --- a/version.go +++ b/version.go @@ -4,7 +4,7 @@ package main const name = "lstf" // version is application version. -const version = "0.7.1" +const version = "0.7.2" // commit describes latest git commit hash. // This is automatically extracted by git describe --always.