diff --git a/IPython/core/release.py b/IPython/core/release.py index bf80392..0ad67d0 100644 --- a/IPython/core/release.py +++ b/IPython/core/release.py @@ -24,7 +24,7 @@ _version_minor = 8 _version_patch = 0 _version_extra = '.dev' # _version_extra = 'b1' -# _version_extra = '' # Uncomment this for full releases +_version_extra = '' # Uncomment this for full releases # Construct full version string from these. _ver = [_version_major, _version_minor, _version_patch] diff --git a/tools/release_helper.sh b/tools/release_helper.sh index fc1b0e4..d39726a 100644 --- a/tools/release_helper.sh +++ b/tools/release_helper.sh @@ -56,9 +56,9 @@ read echo "Cleaning repository" git clean -xfdi -echo "please update version number in ${RED}IPython/core/release.py${NOR} , Do not commit yet – we'll do it later." +echo $GREEN"please update version number in ${RED}IPython/core/release.py${NOR} , Do not commit yet – we'll do it later."$NOR -echo "Press enter to continue" +echo $GREEN"Press enter to continue"$NOR read echo @@ -66,19 +66,19 @@ echo "Attempting to build the docs.." make html -C docs echo -echo "Check the docs, press enter to continue" +echo $GREEN"Check the docs, press enter to continue"$NOR read echo -echo "Attempting to build package..." +echo $BLUE"Attempting to build package..."$NOR tools/build_release echo echo "Let\'s commit : git commit -am \"release $VERSION\" -S" -echo $"Press enter to continue" +echo $GREEN"Press enter to continue"$NOR read -git commit -am "release $VERSION" -S +git commit -am "release $VERSION" # -S echo echo "git push origin \$BRANCH ?"