diff --git a/CHANGELOG.md b/CHANGELOG.md index 940f04f..86323af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [unreleased] -[Unreleased]: https://github.com/sassman/putzen-rs/compare/v1.0.5...HEAD +[Unreleased]: https://github.com/sassman/putzen-rs/compare/v1.0.6...HEAD + +## [1.0.6] - 2022-12-26 +[1.0.6]: https://github.com/sassman/putzen-rs/compare/v1.0.5...v1.0.6 + +### Build + +- [build(deps): bump jwalk from 0.6.0 to 0.8.1](https://github.com/sassman/putzen-rs/pull/17) +- [build(deps): bump argh from 0.1.7 to 0.1.9](https://github.com/sassman/putzen-rs/pull/16) + +### Contributors +- [dependabot[bot]](https://github.com/apps/dependabot) ## [1.0.5] - 2022-10-04 [1.0.5]: https://github.com/sassman/putzen-rs/compare/v1.0.4...v1.0.5 @@ -66,12 +77,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix release-binary-assets workflow -### Release - -- CHANGELOG.md + version bump (#5) - ## [1.0.0] - 2022-01-31 -[1.0.0]: https://github.com/sassman/putzen-rs/compare/v1.0.0 +[1.0.0]: https://github.com/sassman/putzen-rs/compare/...v1.0.0 ### Features diff --git a/Cargo.lock b/Cargo.lock index a2dde01..eedf606 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -247,7 +247,7 @@ dependencies = [ [[package]] name = "putzen-cli" -version = "1.0.5" +version = "1.0.6" dependencies = [ "argh", "dialoguer", diff --git a/Cargo.toml b/Cargo.toml index e9c3fb9..eb55d35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "putzen-cli" description = "helps keeping your disk clean of build and dependency artifacts safely" -version = "1.0.5" +version = "1.0.6" authors = ["Sven Assmann "] edition = "2021" license = "GPL-3.0-only" diff --git a/cliff.toml b/cliff.toml index 6ecf8be..0f8d70f 100644 --- a/cliff.toml +++ b/cliff.toml @@ -15,10 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 body = """ {% if version %}\ ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} - [{{ version | trim_start_matches(pat="v") }}]: https://github.com/sassman/putzen-rs/compare/{{ version }}...{{ version }}-before + [{{ version | trim_start_matches(pat="v") }}]: https://github.com/sassman/putzen-rs/compare/{{ previous.version }}...{{ version }} {% else %}\ ## [unreleased] - [Unreleased]: https://github.com/sassman/putzen-rs/compare/vX.X.X...HEAD + [Unreleased]: https://github.com/sassman/putzen-rs/compare/{{ version }}...HEAD {% endif %}\ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | upper_first }} @@ -39,6 +39,8 @@ footer = """ conventional_commits = true # filter out the commits that are not conventional filter_unconventional = true +# process each line of a commit as an individual commit +split_commits = false # regex for parsing and grouping commits commit_parsers = [ { message = "^feat", group = "Features"}, @@ -52,8 +54,10 @@ commit_parsers = [ { message = "^chore", group = "Miscellaneous Tasks"}, { body = ".*security", group = "Security"}, ] +# protect breaking changes from being skipped due to matching a skipping commit_parser +protect_breaking_commits = false # filter out the commits that are not matched by commit parsers -filter_commits = false +filter_commits = true # glob pattern for matching git tags tag_pattern = "v[0-9]*" # regex for skipping tags