prepare next version: update regexes (#14170)

# Objective

- The post release version bump job failed:
https://github.com/bevyengine/bevy/actions/runs/9799332118
- This is because main didn't update to 0.14 as that happened in a
branch

## Solution

- Update the regexes to work with the -dev suffix

---------

Co-authored-by: Jan Hohenheim <jan@hohenheim.ch>
This commit is contained in:
François Mockers 2024-07-08 04:32:16 +02:00 committed by GitHub
parent 2968d4121b
commit 2553c3ade8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,9 +27,9 @@ jobs:
# Read the current version from Cargo.toml # Read the current version from Cargo.toml
current_version=$(cargo metadata --format-version 1 --no-deps | \ current_version=$(cargo metadata --format-version 1 --no-deps | \
jq --raw-output '.packages | .[] | select(.name == "bevy").version') jq --raw-output '.packages | .[] | select(.name == "bevy").version')
# Sanity check: current version should be 0.X.Y # Sanity check: current version should be 0.X.Y-dev
if ! grep -q '^0\.[0-9]\+\.[0-9]\+$' <<< "${current_version}"; then if ! grep -q '^0\.[0-9]\+\.[0-9]\+-dev$' <<< "${current_version}"; then
echo "Invalid version (not in 0.X.Y format): ${current_version}" echo "Invalid version (not in 0.X.Y-dev format): ${current_version}"
exit 1 exit 1
fi fi
minor_version=$(sed 's/^0\.\([0-9]\+\).*/\1/' <<< "${current_version}") minor_version=$(sed 's/^0\.\([0-9]\+\).*/\1/' <<< "${current_version}")