Skip to content

Commit

Permalink
chore: add changelog generation
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <[email protected]>
  • Loading branch information
simonsan committed Sep 14, 2023
1 parent d369f97 commit 7f67db8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ All notable changes to this project will be documented in this file.
- Remove CI Todo
- Remove To-dos from Readme
- Break line in toml code for usability
- Update changelog

### Features

Expand All @@ -40,14 +41,17 @@ All notable changes to this project will be documented in this file.
- Put action version to follow main branch while action is still in development
- Switch ci to rustic-rs/create-binary-artifact action
- Switch rest of ci to rustic-rs/create-binary-artifact action
- Change license
- Fix workflow name for create-binary-artifact action, and check breaking
changes package dependent
- Decrease build times on windows
- Fix github refs
- Set right package
- Use bash substring comparison to determine package name from branch
- Fix woggly github action comparison

### Refactor

- Refactor to library and server binary

### Styling

- Fmt
- Dprint fmt

<!-- generated by git-cliff -->
10 changes: 3 additions & 7 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ footer = """
"""
# postprocessors
postprocessors = [


# { pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL
{ pattern = '<REPO>', replace = "https://github.com/rustic-rs/rustic_server" },
]
[git]
# parse the commits based on https://www.conventionalcommits.org
Expand All @@ -47,9 +45,7 @@ filter_unconventional = true
split_commits = false
# regex for preprocessing the commit messages
commit_preprocessors = [


# { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"}, # replace issue numbers
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))" }, # replace issue numbers
]
# regex for parsing and grouping commits
commit_parsers = [
Expand All @@ -58,7 +54,7 @@ commit_parsers = [
{ message = "^doc", group = "Documentation" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "Refactor" },
{ message = "^style", group = "Styling" },
{ message = "^style", group = "Styling", skip = true }, # we ignore styling in the changelog
{ message = "^test", group = "Testing" },
{ message = "^chore\\(release\\): prepare for", skip = true },
{ message = "^chore\\(deps\\)", skip = true },
Expand Down

0 comments on commit 7f67db8

Please sign in to comment.