Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make sure to only change version directly #14

Merged
merged 1 commit into from
Mar 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/release
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fi

MINOR="$((${VERSION##*.} + 1))"
DEV_VERSION="${VERSION%.*}.${MINOR}.dev0"
sed -i.bak "s/version =.*/version = \"$DEV_VERSION\"/g" pyproject.toml && rm pyproject.toml.bak
sed -i.bak "s/^version =.*/version = \"$DEV_VERSION\"/g" pyproject.toml && rm pyproject.toml.bak
sed -i.bak "s/\"\/\/conditions:default\":.*/\"\/\/conditions:default\": \"$DEV_VERSION\",/g" BUILD.bazel && rm BUILD.bazel.bak
git add pyproject.toml BUILD.bazel && git commit --signoff -S -sv -m "chore: bump development version [generated]"
git push origin main