##// END OF EJS Templates
back to dev
Matthias Bussonnier -
Show More
@@ -20,11 +20,11 b" name = 'ipython'"
20 # release. 'dev' as a _version_extra string means this is a development
20 # release. 'dev' as a _version_extra string means this is a development
21 # version
21 # version
22 _version_major = 7
22 _version_major = 7
23 _version_minor = 10
23 _version_minor = 11
24 _version_patch = 0
24 _version_patch = 0
25 _version_extra = '.dev'
25 _version_extra = '.dev'
26 # _version_extra = 'b1'
26 # _version_extra = 'b1'
27 _version_extra = '' # Uncomment this for full releases
27 # _version_extra = '' # Uncomment this for full releases
28
28
29 # Construct full version string from these.
29 # Construct full version string from these.
30 _ver = [_version_major, _version_minor, _version_patch]
30 _ver = [_version_major, _version_minor, _version_patch]
@@ -81,10 +81,28 b' read'
81 git commit -am "release $VERSION" -S
81 git commit -am "release $VERSION" -S
82
82
83 echo
83 echo
84 echo "git push origin \$BRANCH ?"
84 echo $BLUE"git push origin \$BRANCH ($BRANCH)?"$NOR
85 echo "Press enter to continue"
85 echo $GREEN"Make sure you can push"$NOR
86 echo $GREEN"Press enter to continue"$NOR
86 read
87 read
87 git push origin $BRANCH
88 git push origin $BRANCH
88 # git tag -am "release $VERSION" "$VERSION" -s
89
89 # git push origin $VERSION
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
90
108
General Comments 0
You need to be logged in to leave comments. Login now