Skip to content

Commit

Permalink
release 7.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Jun 28, 2019
1 parent 7e04d91 commit edbca8c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion IPython/core/release.py
Expand Up @@ -24,7 +24,7 @@
_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]
Expand Down
12 changes: 11 additions & 1 deletion tools/release_helper.sh
Expand Up @@ -10,6 +10,9 @@ read VERSION
echo -n 'branch (master|X.y):'
read branch

RED=$(tput setaf 1)
NOR=$(tput sgr0)

echo
echo "updating what's new with informations from docs/source/whatsnew/pr"
python tools/update_whatsnew.py
Expand Down Expand Up @@ -37,7 +40,8 @@ read
echo "Cleaning repository"
git clean -xfdi

echo "please update version number in IPython/core/release.py"
echo "please update version number in ${RED}IPython/core/release.py${NOR} , Do not commit
yet – we'll do it later."

echo "Press enter to continue"
read
Expand All @@ -55,3 +59,9 @@ echo "Attempting to build package..."

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"

0 comments on commit edbca8c

Please sign in to comment.