Skip to content

Commit

Permalink
release 7.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Bussonnier committed Aug 30, 2019
1 parent 2b8058f commit c233c25
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion IPython/core/release.py
Original file line number Diff line number Diff line change
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: 6 additions & 6 deletions tools/release_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,29 +56,29 @@ 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
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 ?"
Expand Down

0 comments on commit c233c25

Please sign in to comment.