-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…b releases
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
( | ||
retrospective-crate-version-tagging detect \ | ||
--crate-name bevy-tnua \ | ||
--changelog-path CHANGELOG.md \ | ||
--tag-prefix v \ | ||
--title-prefix "Main Crate" | ||
retrospective-crate-version-tagging detect \ | ||
--crate-name bevy-tnua-physics-integration-layer \ | ||
--changelog-path physics-integration-layer/CHANGELOG.md \ | ||
--tag-prefix physics-integration-layer-v \ | ||
--title-prefix "Physics Integration Layer" | ||
retrospective-crate-version-tagging detect \ | ||
--crate-name bevy-tnua-avian3d \ | ||
--changelog-path avian3d/CHANGELOG.md \ | ||
--tag-prefix avian-v \ | ||
--title-prefix "Avian Integration" | ||
retrospective-crate-version-tagging detect \ | ||
--crate-name bevy-tnua-rapier3d \ | ||
--changelog-path rapier3d/CHANGELOG.md \ | ||
--tag-prefix rapier-v \ | ||
--title-prefix "Rapier Integration" | ||
) | retrospective-crate-version-tagging create-releases |