version bump

This commit is contained in:
Kevin Gorham 2018-12-11 14:19:58 -05:00
parent 08541202ef
commit 2668970b11
2 changed files with 6 additions and 2 deletions

View File

@ -7,8 +7,10 @@ read -p "TAG the release as above? Press y to tag ENTER to skip: [N] " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
git tag -a v$(grep -oE 'versionName.*' zcash-android-wallet-app/app/build.gradle | sed 's/[^0-9]*\([0-9].*\w\).*/\1/') -m "Release on $(date)"
echo
echo "build tagged"
else
echo
echo "tag not created!"
fi
@ -22,9 +24,11 @@ then
echo "Tags pushed, build triggered. Opening bitrise to verify..."
xdg-open "https://app.bitrise.io/app/3f9040b242d98534#/builds"
else
echo
echo "tag not pushed!"
fi
echo
echo "Done!"
echo

View File

@ -14,7 +14,7 @@ android {
minSdkVersion buildConfig.minSdkVersion
targetSdkVersion buildConfig.targetSdkVersion
versionCode 17 // todo: change this to 1_00_04 format, once we graduate beyond zero for the major version number because leading zeros indicate on octal number.
versionName "0.2.4-alpha"
versionName "0.2.5-alpha"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}