Show More
@@ -20,11 +20,11 b" name = 'ipython'" | |||
|
20 | 20 | # release. 'dev' as a _version_extra string means this is a development |
|
21 | 21 | # version |
|
22 | 22 | _version_major = 7 |
|
23 |
_version_minor = 1 |
|
|
24 |
_version_patch = |
|
|
23 | _version_minor = 11 | |
|
24 | _version_patch = 0 | |
|
25 | 25 | _version_extra = '.dev' |
|
26 | 26 | # _version_extra = 'b1' |
|
27 | _version_extra = '' # Uncomment this for full releases | |
|
27 | # _version_extra = '' # Uncomment this for full releases | |
|
28 | 28 | |
|
29 | 29 | # Construct full version string from these. |
|
30 | 30 | _ver = [_version_major, _version_minor, _version_patch] |
@@ -30,9 +30,9 b' MILESTONE=${input:-$MILESTONE}' | |||
|
30 | 30 | echo -n "VERSION (X.y.z) [$VERSION]:" |
|
31 | 31 | read input |
|
32 | 32 | VERSION=${input:-$VERSION} |
|
33 |
echo -n " |
|
|
33 | echo -n "BRANCH (master|X.y) [$BRANCH]:" | |
|
34 | 34 | read input |
|
35 | branch=${input:-$branch} | |
|
35 | BRANCH=${input:-$BRANCH} | |
|
36 | 36 | |
|
37 | 37 | ask_section(){ |
|
38 | 38 | echo |
@@ -117,7 +117,7 b' git push origin $BRANCH' | |||
|
117 | 117 | |
|
118 | 118 | echo |
|
119 | 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 | 121 | read |
|
122 | 122 | git tag -am "release $VERSION" "$VERSION" -s |
|
123 | 123 | |
@@ -127,6 +127,22 b' echo $GREEN"Press enter to continue"$NOR' | |||
|
127 | 127 | read |
|
128 | 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 | 146 | echo |
|
131 | 147 | echo $BLUE"let's : git checkout $VERSION"$NOR |
|
132 | 148 | echo $GREEN"Press enter to continue"$NOR |
General Comments 0
You need to be logged in to leave comments.
Login now