Skip to content

Commit 82f1098

Browse files
committed
Fixes in release script
1 parent b11f765 commit 82f1098

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

do-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ else
3737
NEXT_PATCH=$(("${PATCH}" + 1))
3838
fi
3939

40-
# allow to override the next version, e.g. via "DEVELOPMENT_VERSION=7.0.0-SNAPSHOT ./do-release.sh"
40+
# allow to override the next version, e.g. via "DEVELOPMENT_VERSION=7.0.0 ./do-release.sh"
4141
if [ "$DEVELOPMENT_VERSION" = "" ]; then
4242
DEVELOPMENT_VERSION="$MAJOR.$NEXT_MINOR.$NEXT_PATCH-SNAPSHOT"
4343
fi
@@ -59,7 +59,7 @@ export DEVELOPMENT_VERSION
5959
export BUILDQUALIFIER
6060

6161
echo "RELEASE_VERSION: ${RELEASE_VERSION}.${BUILDQUALIFIER} (this release)"
62-
echo "DEVELOPMENT_VERSION: ${DEVELOPMENT_VERSION} (the next version after the release)"
62+
echo "DEVELOPMENT_VERSION: ${DEVELOPMENT_VERSION}-SNAPSHOT (the next version after the release)"
6363
echo "CURRENT_BRANCH: ${CURRENT_BRANCH}"
6464

6565
echo

0 commit comments

Comments
 (0)