From 1382f8b795f79d1af8a45f4bfdf4796b6e85e2c9 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Fri, 22 Sep 2023 10:18:58 +0100 Subject: [PATCH] version bump and release without commit --- scripts/release.sh | 4 ++-- src/auto_archiver/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 09e1fd8..c063bfa 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -8,8 +8,8 @@ TAG=$(python -c 'from src.auto_archiver.version import __version__; print("v" + 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 - git add -A - git commit -m "Bump version to $TAG for release" || true && git push + # 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" git push --tags diff --git a/src/auto_archiver/version.py b/src/auto_archiver/version.py index 885c283..131ad4d 100644 --- a/src/auto_archiver/version.py +++ b/src/auto_archiver/version.py @@ -3,7 +3,7 @@ _MAJOR = "0" _MINOR = "6" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "12" +_PATCH = "13" # 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 = ""