From c587eb90506c3ca8093fa85b1f5698b5c5cf5ee1 Mon Sep 17 00:00:00 2001 From: Jake Poznanski Date: Mon, 29 Sep 2025 17:36:41 +0000 Subject: [PATCH] Ugh, release script adds all files by default --- olmocr/version.py | 2 +- scripts/release.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/olmocr/version.py b/olmocr/version.py index 79a242e..cee5284 100644 --- a/olmocr/version.py +++ b/olmocr/version.py @@ -2,7 +2,7 @@ _MAJOR = "0" _MINOR = "3" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "4" +_PATCH = "6" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = "" diff --git a/scripts/release.sh b/scripts/release.sh index dc5ab60..718dc29 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -68,7 +68,6 @@ read -p "Creating new release for $TAG. Do you want to continue? [Y/n] " prompt if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then python scripts/prepare_changelog.py - git add -A git commit -m "Bump version to $TAG for release" || true && git push echo "Creating new git tag $TAG" git tag "$TAG" -m "$TAG"