From d406802f9d577827e51b2903031cc1cb00d51cd0 Mon Sep 17 00:00:00 2001 From: Michele Dolfi <97102151+dolfim-ibm@users.noreply.github.com> Date: Mon, 10 Mar 2025 16:57:48 +0100 Subject: [PATCH] chore: update uv.lock with new release version (#89) Signed-off-by: Michele Dolfi --- .github/scripts/release.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/scripts/release.sh b/.github/scripts/release.sh index da55910..19f40eb 100755 --- a/.github/scripts/release.sh +++ b/.github/scripts/release.sh @@ -11,6 +11,7 @@ CHGLOG_FILE="${CHGLOG_FILE:-CHANGELOG.md}" # update package version uvx --from=toml-cli toml set --toml-path=pyproject.toml project.version "${TARGET_VERSION}" +uv lock --upgrade-package docling-serve # collect release notes REL_NOTES=$(mktemp) @@ -30,7 +31,7 @@ mv "${TMP_CHGLOG}" "${CHGLOG_FILE}" # push changes git config --global user.name 'github-actions[bot]' git config --global user.email 'github-actions[bot]@users.noreply.github.com' -git add pyproject.toml "${CHGLOG_FILE}" +git add pyproject.toml uv.lock "${CHGLOG_FILE}" COMMIT_MSG="chore: bump version to ${TARGET_VERSION} [skip ci]" git commit -m "${COMMIT_MSG}" git push origin main