diff --git a/CHANGELOG.md b/CHANGELOG.md index eedcb55..83a918a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,28 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.3.0] - 2021-09-10 + +### Bug Fixes + +- Fix default regexes and references in docs (#7) + +### Documentation + +- Update installation instructions for Arch Linux +- Add badge for joining the Matrix chat +- Update example regexes +- Update the default regex in scoped config example + +### Features + +- Support parsing the missing scopes with `default_scope` (#8) +- Support generating a changelog scoped to a directory (#11) + +### Miscellaneous Tasks + +- Upgrade dependencies + ## [0.2.6] - 2021-09-04 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 0552957..4fb94bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -327,7 +327,7 @@ dependencies = [ [[package]] name = "git-cliff" -version = "0.2.6" +version = "0.3.0" dependencies = [ "dirs-next", "git-cliff-core", @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "git-cliff-core" -version = "0.2.6" +version = "0.3.0" dependencies = [ "config", "git-conventional", diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml index 6df97e9..34db175 100644 --- a/git-cliff-core/Cargo.toml +++ b/git-cliff-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff-core" -version = "0.2.6" # managed by release.sh +version = "0.3.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 2b1e8b9..e8eadb5 100644 --- a/git-cliff/Cargo.toml +++ b/git-cliff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff" -version = "0.2.6" # managed by release.sh +version = "0.3.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.2.6" # managed by release.sh +version = "0.3.0" # managed by release.sh path = "../git-cliff-core" [dependencies.structopt]