Skip to content

Commit

Permalink
chore(release): prepare for v1.0.6 (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
sassman authored Dec 26, 2022
1 parent d317e2e commit 5b12e3f
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
19 changes: 13 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
edition = "2021"
license = "GPL-3.0-only"
Expand Down
10 changes: 7 additions & 3 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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"},
Expand All @@ -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
Expand Down

0 comments on commit 5b12e3f

Please sign in to comment.