From 1879ed27bb0ec3be5fee499ac177ad14a9ef7cfd 2019-07-26 22:15:46 From: Matthias Bussonnier Date: 2019-07-26 22:15:46 Subject: [PATCH] back to development --- diff --git a/IPython/core/release.py b/IPython/core/release.py index e07a15e..bf80392 100644 --- a/IPython/core/release.py +++ b/IPython/core/release.py @@ -20,11 +20,11 @@ name = 'ipython' # release. 'dev' as a _version_extra string means this is a development # version _version_major = 7 -_version_minor = 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 779ccb4..23c7138 100644 --- a/tools/release_helper.sh +++ b/tools/release_helper.sh @@ -68,7 +68,15 @@ tools/build_release echo echo "Let\'s commit : git commit -am \"release $VERSION\" -S" +echo $"Press enter to continue" +read +git commit -am "release $VERSION" -S + +echo +echo "git push origin \$BRANCH ?" echo "Press enter to continue" read -git commit -am "release $VERSION" +git push origin $BRANCH +# git tag -am "release $VERSION" "$VERSION" -s +# git push origin $VERSION