0c83ffde2a
Some crates need to rewrite values when they are released in other crates. It turns out, by default we use a general config _build/release.toml. So it turns out these local-to-the-crate release.tomls were not being used unless explicitly chosen in the local-to-the-crate Makefile.toml. This removes the dead release.tomls and overrides the ones that need to edit other crates on release.
7 lines
470 B
TOML
7 lines
470 B
TOML
no-dev-version = true
|
|
pre-release-commit-message = "Release {{crate_name}} {{version}}"
|
|
pro-release-commit-message = "Bump {{crate_name}} version to {{next_version}}"
|
|
tag-message = "Release {{crate_name}} {{version}}"
|
|
pre-release-replacements = [
|
|
{file="CHANGELOG.md", search="# master", replace="# master\n\n- Compatibility with the latest `juniper`.\n\n# [[{{version}}] {{date}}](https://github.com/graphql-rust/juniper/releases/tag/{{crate_name}}-{{version}})"},
|
|
]
|