chore(deps): update all dependencies #34

Merged
kjuulh merged 4 commits from renovate/all into main 2024-04-08 23:06:18 +02:00
Showing only changes of commit 490130126b - Show all commits

View File

@ -139,6 +139,8 @@ impl ChangeLog<'_> {
let config = Config {
changelog: default_changelog_config(None, self.release_link.as_deref()),
git: default_git_config(),
remote: None,
bump: None,
};
config
@ -148,6 +150,8 @@ impl ChangeLog<'_> {
let config = Config {
changelog: default_changelog_config(header, self.release_link.as_deref()),
git: default_git_config(),
remote: None,
bump: None,
};
config
@ -175,6 +179,7 @@ fn default_commit_parsers() -> Vec<CommitParser> {
skip: None,
field: None,
pattern: None,
sha: None,
}
}
@ -195,6 +200,7 @@ fn default_commit_parsers() -> Vec<CommitParser> {
scope: None,
field: None,
pattern: None,
sha: None,
},
]
}