diff --git a/scripts/bump-version.sh b/scripts/bump-version.sh index e230d7487e1..962d9296274 100755 --- a/scripts/bump-version.sh +++ b/scripts/bump-version.sh @@ -7,9 +7,6 @@ cd $SCRIPT_DIR/.. OLD_VERSION="$1" NEW_VERSION="$2" -echo $OLD_VERSION -echo $NEW_VERSION - GRADLE_FILEPATH="gradle.properties" # Replace `versionName` with the given version diff --git a/scripts/post-release.sh b/scripts/post-release.sh index df8feb94123..66e95d20d12 100755 --- a/scripts/post-release.sh +++ b/scripts/post-release.sh @@ -7,6 +7,8 @@ cd $SCRIPT_DIR/.. OLD_VERSION="${1}" NEW_VERSION="${2}" +GRADLE_FILEPATH="gradle.properties" + # Add a new unreleased entry in the changelog sed -i "" 's/# Changelog/# Changelog\n\n## Unreleased/' CHANGELOG.md