From 91d36d325aff4990062901556aa9581d2b22c897 2019-08-30 16:52:21 From: Matthias Bussonnier Date: 2019-08-30 16:52:21 Subject: [PATCH] back to development --- diff --git a/IPython/core/release.py b/IPython/core/release.py index 0ad67d0..2cb20d7 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 = 8 +_version_minor = 9 _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 d39726a..67ce086 100644 --- a/tools/release_helper.sh +++ b/tools/release_helper.sh @@ -78,7 +78,7 @@ echo echo "Let\'s commit : git commit -am \"release $VERSION\" -S" 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 ?"