aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/release.toml
diff options
context:
space:
mode:
authorRalph Ursprung <[email protected]>2025-06-11 09:48:37 +0200
committerRalph Ursprung <[email protected]>2025-07-08 23:05:48 +0200
commita52ca758ac84af5b9fafa9f6cc0562495a796ffd (patch)
treec2dd98a66ba5143e853928460d38cda38faddce7 /embassy-executor/release.toml
parent1c515937ff69cf2358118e13a9a70178dd7a99a0 (diff)
`embassy-executor`: add release automation using `cargo-release`
this requires you to install [`cargo-release`]. note that this does not include a URL pointing to the diff on GitHub as is usually done in changelogs since `embassy` is a mono-repo and the GH UI doesn't offer a commit view per folder (see the [GH feature request] for this). [`cargo-release`]: https://crates.io/crates/cargo-release [GH feature request]: https://github.com/orgs/community/discussions/162131
Diffstat (limited to 'embassy-executor/release.toml')
-rw-r--r--embassy-executor/release.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/embassy-executor/release.toml b/embassy-executor/release.toml
new file mode 100644
index 000000000..fb6feaf21
--- /dev/null
+++ b/embassy-executor/release.toml
@@ -0,0 +1,5 @@
1pre-release-replacements = [
2 {file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1},
3 {file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1},
4 {file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## Unreleased - ReleaseDate\n", exactly=1},
5]