Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5bac485

Browse files
committed
back to dev
1 parent cd9f522 commit 5bac485

2 files changed

Lines changed: 24 additions & 6 deletions

File tree

IPython/core/release.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
# release. 'dev' as a _version_extra string means this is a development
2121
# version
2222
_version_major = 7
23-
_version_minor = 10
23+
_version_minor = 11
2424
_version_patch = 0
2525
_version_extra = '.dev'
2626
# _version_extra = 'b1'
27-
_version_extra = '' # Uncomment this for full releases
27+
# _version_extra = '' # Uncomment this for full releases
2828

2929
# Construct full version string from these.
3030
_ver = [_version_major, _version_minor, _version_patch]

tools/release_helper.sh

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,28 @@ read
8181
git commit -am "release $VERSION" -S
8282

8383
echo
84-
echo "git push origin \$BRANCH ?"
85-
echo "Press enter to continue"
84+
echo $BLUE"git push origin \$BRANCH ($BRANCH)?"$NOR
85+
echo $GREEN"Make sure you can push"$NOR
86+
echo $GREEN"Press enter to continue"$NOR
8687
read
8788
git push origin $BRANCH
88-
# git tag -am "release $VERSION" "$VERSION" -s
89-
# git push origin $VERSION
89+
90+
echo
91+
echo "Let's tag : git tag -am \"release $VERSION\" \"$VERSION\" -s"
92+
echo $GREEN"Press enter to wtagcommit"$NOR
93+
read
94+
git tag -am "release $VERSION" "$VERSION" -s
95+
96+
echo
97+
echo $BLUE"And push the tag: git push origin \$VERSION ?"$NOR
98+
echo $GREEN"Press enter to continue"$NOR
99+
read
100+
git push origin $VERSION
101+
102+
echo
103+
echo $BLUE"let's : git checkout $VERSION"$NOR
104+
echo $GREEN"Press enter to continue"$NOR
105+
read
106+
git checkout $VERSION
107+
90108

0 commit comments

Comments
 (0)