feat: update deps
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-04-08 22:44:14 +02:00
parent 9201ff9294
commit 490130126b
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

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