-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cargo-release): fix cargo-release configuration
- Loading branch information
1 parent
799cbc6
commit 98c3192
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
sign-commit = true | ||
sign-tag = true | ||
pre-release-commit-message = "Release {{crate_name}} {{version}} 🎉🎉" | ||
post-release-commit-message = "Start next {{crate_name}} development iteration {{version}}" | ||
tag-message = "Release {{crate_name}} {{prefix}}{{version}}" | ||
tag-prefix = "" | ||
tag-name = "{{prefix}}{{version}}" | ||
|
||
pre-release-replacements = [ | ||
{file="README.md", search="actix-web-validator = \"[a-z0-9\\.-]+\"", replace="actix-web-validator = \"{{version}}\""} , | ||
{file="CHANGELOG.md", search="\\[Unreleased\\]", replace="[{{version}}] {{date}}"}, | ||
{file="CHANGELOG.md", search="\\(https://semver.org/spec/v2.0.0.html\\).", replace="(https://semver.org/spec/v2.0.0.html).\n\n## [Unreleased]"} | ||
{ file = "README.md", search = "actix-web-validator = \"[a-z0-9\\.-]+\"", replace = "actix-web-validator = \"{{version}}\"" }, | ||
{ file = "CHANGELOG.md", search = "\\[Unreleased\\]", replace = "[{{version}}] {{date}}" }, | ||
{ file = "CHANGELOG.md", search = "\\(https://semver.org/spec/v2.0.0.html\\).", replace = "(https://semver.org/spec/v2.0.0.html).\n\n## [Unreleased]" }, | ||
] |