We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be6fa87 + d3bd153 commit b1229f4Copy full SHA for b1229f4
1 file changed
scripts/release.sh
@@ -122,10 +122,14 @@ cmd_prepare() {
122
123
set_version "$new"
124
update_changelog "$new"
125
+ if command -v uv >/dev/null 2>&1 && [[ -f uv.lock ]]; then
126
+ uv lock
127
+ fi
128
129
branch="release/v${new}"
130
git checkout -b "$branch"
131
git add pyproject.toml CHANGELOG.md
132
+ [[ -f uv.lock ]] && git add uv.lock
133
git commit -m "chore: release v${new}"
134
135
pkg="$(get_pkg_name)"
0 commit comments