-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease.toml
More file actions
10 lines (10 loc) · 816 Bytes
/
release.toml
File metadata and controls
10 lines (10 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
sign-commit=true ##Use GPG to sign git commits and tag generated by cargo-release
disable-publish=true ##Don't do cargo publish right now, see manifest publish field to permanently disable publish.
pre-release-replacements = [
{file="./scripts/app/scripts/env.sh", search="artifactId=\"[a-z0-9\\.-]+\"", replace="artifactId=\"{{crate_name}}\""},
{file="./scripts/app/scripts/env.sh", search="artifactVersion=\"[a-z0-9\\.-]+\"", replace="artifactVersion=\"{{version}}\""},
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}"},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}"},
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [Unreleased] - ReleaseDate"},
]
exclude-paths = ["/docs/**", "/README.md", "/tests/**", "/.travis.yml"]