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 = 1 |
|
23 | _version_minor = 11 | |
24 |
_version_patch = |
|
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] |
@@ -30,9 +30,9 b' MILESTONE=${input:-$MILESTONE}' | |||||
30 | echo -n "VERSION (X.y.z) [$VERSION]:" |
|
30 | echo -n "VERSION (X.y.z) [$VERSION]:" | |
31 | read input |
|
31 | read input | |
32 | VERSION=${input:-$VERSION} |
|
32 | VERSION=${input:-$VERSION} | |
33 |
echo -n " |
|
33 | echo -n "BRANCH (master|X.y) [$BRANCH]:" | |
34 | read input |
|
34 | read input | |
35 | branch=${input:-$branch} |
|
35 | BRANCH=${input:-$BRANCH} | |
36 |
|
36 | |||
37 | ask_section(){ |
|
37 | ask_section(){ | |
38 | echo |
|
38 | echo | |
@@ -117,7 +117,7 b' git push origin $BRANCH' | |||||
117 |
|
117 | |||
118 | echo |
|
118 | echo | |
119 | echo "Let's tag : git tag -am \"release $VERSION\" \"$VERSION\" -s" |
|
119 | echo "Let's tag : git tag -am \"release $VERSION\" \"$VERSION\" -s" | |
120 |
echo $GREEN"Press enter to |
|
120 | echo $GREEN"Press enter to tag commit"$NOR | |
121 | read |
|
121 | read | |
122 | git tag -am "release $VERSION" "$VERSION" -s |
|
122 | git tag -am "release $VERSION" "$VERSION" -s | |
123 |
|
123 | |||
@@ -127,6 +127,22 b' echo $GREEN"Press enter to continue"$NOR' | |||||
127 | read |
|
127 | read | |
128 | git push origin $VERSION |
|
128 | git push origin $VERSION | |
129 |
|
129 | |||
|
130 | ||||
|
131 | echo $GREEN"please update version number and back to .dev in ${RED}IPython/core/release.py" | |||
|
132 | echo ${BLUE}"Do not commit yet – we'll do it later."$NOR | |||
|
133 | ||||
|
134 | echo $GREEN"Press enter to continue"$NOR | |||
|
135 | read | |||
|
136 | ||||
|
137 | echo | |||
|
138 | echo "Let's commit : git commit -am \"back to dev\" -S" | |||
|
139 | echo $GREEN"Press enter to commit"$NOR | |||
|
140 | read | |||
|
141 | git commit -am "back to dev" -S | |||
|
142 | ||||
|
143 | ||||
|
144 | ||||
|
145 | ||||
130 | echo |
|
146 | echo | |
131 | echo $BLUE"let's : git checkout $VERSION"$NOR |
|
147 | echo $BLUE"let's : git checkout $VERSION"$NOR | |
132 | echo $GREEN"Press enter to continue"$NOR |
|
148 | echo $GREEN"Press enter to continue"$NOR |
General Comments 0
You need to be logged in to leave comments.
Login now