mirror of
https://github.com/docling-project/docling.git
synced 2026-05-17 13:10:38 +00:00
2be2c38be9
* chore: fix and make release script more generic Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * re-enable git operations Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> --------- Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
70 lines
2.4 KiB
Bash
Executable File
70 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e # trigger failure on error - do not remove!
|
|
set -x # display command on output
|
|
|
|
if [ -z "${TARGET_VERSION}" ]; then
|
|
>&2 echo "No TARGET_VERSION specified"
|
|
exit 1
|
|
fi
|
|
CHGLOG_FILE="${CHGLOG_FILE:-CHANGELOG.md}"
|
|
|
|
# update package versions:
|
|
# - root pyproject.toml = docling-slim
|
|
# - packages/docling/pyproject.toml = docling (meta-package)
|
|
uvx --from=toml-cli toml set --toml-path=pyproject.toml project.version "${TARGET_VERSION}"
|
|
uvx --from=toml-cli toml set --toml-path=packages/docling/pyproject.toml project.version "${TARGET_VERSION}"
|
|
|
|
# Update all docling-slim dependencies in docling package using Python
|
|
TARGET_VERSION="${TARGET_VERSION}" python3 << 'PYTHON_SCRIPT'
|
|
import os
|
|
import re
|
|
from pathlib import Path
|
|
|
|
target_version = os.environ['TARGET_VERSION']
|
|
pyproject_path = Path("packages/docling/pyproject.toml")
|
|
|
|
# Read the file
|
|
content = pyproject_path.read_text()
|
|
|
|
# Pattern to match docling-slim dependencies with version pinning
|
|
# Matches: docling-slim[extra]==version or docling-slim==version
|
|
pattern = r'(docling-slim(?:\[[^\]]+\])?)==[\d\.]+'
|
|
|
|
# Replace all occurrences with the new version
|
|
updated_content = re.sub(pattern, rf'\1=={target_version}', content)
|
|
|
|
# Write back
|
|
pyproject_path.write_text(updated_content)
|
|
|
|
print(f"Updated all docling-slim dependencies to version {target_version}")
|
|
PYTHON_SCRIPT
|
|
|
|
UV_FROZEN=0 uv lock --upgrade-package docling --upgrade-package docling-slim
|
|
|
|
# collect release notes
|
|
REL_NOTES=$(mktemp)
|
|
uv run --no-sync semantic-release changelog --unreleased >> "${REL_NOTES}"
|
|
|
|
# update changelog
|
|
TMP_CHGLOG=$(mktemp)
|
|
TARGET_TAG_NAME="v${TARGET_VERSION}"
|
|
RELEASE_URL="$(gh repo view --json url -q ".url")/releases/tag/${TARGET_TAG_NAME}"
|
|
printf "## [${TARGET_TAG_NAME}](${RELEASE_URL}) - $(date -Idate)\n\n" >> "${TMP_CHGLOG}"
|
|
cat "${REL_NOTES}" >> "${TMP_CHGLOG}"
|
|
if [ -f "${CHGLOG_FILE}" ]; then
|
|
printf "\n" | cat - "${CHGLOG_FILE}" >> "${TMP_CHGLOG}"
|
|
fi
|
|
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 packages/docling/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
|
|
|
|
# create GitHub release (incl. Git tag)
|
|
gh release create "${TARGET_TAG_NAME}" -F "${REL_NOTES}"
|