f5b18dffaf
remove tag-prefix deletion as discussed here: https://github.com/igalic/Plume/pull/1 Update all versions numbers Update Crowdin config to v3 + Pull translations with cargo release Follow a more standard CHANGELOG format add release.toml configuration file for cargo-release and also add overrides in all other crates, since we only have one CHANGELOG.md: https://github.com/sunng87/cargo-release/issues/205 we might wanna have that looked at or fixed ignore .vscode/ add / backfill Changelog.md Co-authored-by: Mina Galić <me+git@igalic.co> Co-authored-by: Ana Gelez <ana@gelez.xyz> Reviewed-on: https://git.joinplu.me/Plume/Plume/pulls/835
18 lines
803 B
TOML
18 lines
803 B
TOML
# we don't have a crate yet, so
|
|
disable-publish = true
|
|
# change when we all have gpg keys
|
|
sign-commit = false
|
|
dev-version-ext = 'dev'
|
|
# update all crates in plume at once:
|
|
consolidate-commits = true
|
|
|
|
pre-release-hook = ["crowdin", "pull"]
|
|
|
|
pre-release-replacements = [
|
|
{file="CHANGELOG.md", search="Unreleased", replace="[{{version}}]"},
|
|
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
|
|
{file="CHANGELOG.md", search="No release date", replace="{{date}}"},
|
|
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [Unreleased] - ReleaseDate", exactly=1},
|
|
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/Plume-org/Plume/compare/{{tag_name}}...HEAD", exactly=1},
|
|
]
|