diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c3cc4b..fabfa0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,35 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.2.0] - 2021-08-18 + +### Bug Fixes + +- Use custom error type for UTF-8 errors + +### Documentation + +- Update the doc comment of `prepend` + +### Features + +- Embed the default configuration file into the binary +- Add `--init` flag for creating the default config +- Support a global location for configuration file (#2) + +### Miscellaneous Tasks + +- Move `cliff.toml` to config/ + +### Refactor + +- Create a constant for default configuration file +- Update the log message for unprocessed tags + +### Styling + +- Update the message of `--init` flag + ## [0.1.2] - 2021-08-14 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 598afda..c748e73 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -345,7 +345,7 @@ dependencies = [ [[package]] name = "git-cliff" -version = "0.1.2" +version = "0.2.0" dependencies = [ "dirs-next", "git-cliff-core", @@ -357,7 +357,7 @@ dependencies = [ [[package]] name = "git-cliff-core" -version = "0.1.2" +version = "0.2.0" dependencies = [ "config", "git-conventional", diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml index bd33581..4569079 100644 --- a/git-cliff-core/Cargo.toml +++ b/git-cliff-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff-core" -version = "0.1.2" # managed by release.sh +version = "0.2.0" # managed by release.sh description = "Core library of git-cliff" authors = ["git-cliff contributors "] license = "GPL-3.0" diff --git a/git-cliff/Cargo.toml b/git-cliff/Cargo.toml index 5af7c4d..39027ea 100644 --- a/git-cliff/Cargo.toml +++ b/git-cliff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff" -version = "0.1.2" # managed by release.sh +version = "0.2.0" # managed by release.sh description = "A highly customizable changelog generator ⛰️" authors = ["git-cliff contributors "] license = "GPL-3.0" @@ -22,7 +22,7 @@ log = "0.4.14" dirs-next = "2.0.0" [dependencies.git-cliff-core] -version = "0.1.2" # managed by release.sh +version = "0.2.0" # managed by release.sh path = "../git-cliff-core" [dependencies.structopt]