From 3544c180b971afa87022e3c6b467819713f57311 2020-01-01 17:31:34 From: Matthias Bussonnier Date: 2020-01-01 17:31:34 Subject: [PATCH] release 7.11.1 --- diff --git a/IPython/core/release.py b/IPython/core/release.py index 0fe4a42..a07fa6e 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 = 12 -_version_patch = 0 +_version_minor = 11 +_version_patch = 1 _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 4947447..fe0828c 100644 --- a/tools/release_helper.sh +++ b/tools/release_helper.sh @@ -107,7 +107,7 @@ rm dist/* if ask_section "Should we commit, tag, push... etc ? " then echo - echo "Let's commit : git commit -am \"release $VERSION\" -S" + echo $BLUE"Let's commit : git commit -am \"release $VERSION\" -S" echo $GREEN"Press enter to commit"$NOR read git commit -am "release $VERSION" -S