Show More
@@ -21,6 +21,7 b' WHITE=$(tput setaf 7)' | |||||
21 | NOR=$(tput sgr0) |
|
21 | NOR=$(tput sgr0) | |
22 |
|
22 | |||
23 |
|
23 | |||
|
24 | echo "Will use $EDITOR to edit files when necessary" | |||
24 | echo -n "PREV_RELEASE (X.y.z) [$PREV_RELEASE]: " |
|
25 | echo -n "PREV_RELEASE (X.y.z) [$PREV_RELEASE]: " | |
25 | read input |
|
26 | read input | |
26 | PREV_RELEASE=${input:-$PREV_RELEASE} |
|
27 | PREV_RELEASE=${input:-$PREV_RELEASE} | |
@@ -47,6 +48,18 b' ask_section(){' | |||||
47 | } |
|
48 | } | |
48 |
|
49 | |||
49 |
|
50 | |||
|
51 | maybe_edit(){ | |||
|
52 | echo | |||
|
53 | echo $BLUE"$1"$NOR | |||
|
54 | echo -n $GREEN"Press e to Edit $1, any other keys to skip: "$NOR | |||
|
55 | read -n1 value | |||
|
56 | echo | |||
|
57 | if [ $value = 'e' ] ; then | |||
|
58 | $EDITOR $1 | |||
|
59 | fi | |||
|
60 | } | |||
|
61 | ||||
|
62 | ||||
50 |
|
63 | |||
51 | echo |
|
64 | echo | |
52 | if ask_section "Updating what's new with informations from docs/source/whatsnew/pr" |
|
65 | if ask_section "Updating what's new with informations from docs/source/whatsnew/pr" | |
@@ -104,6 +117,7 b' echo $GREEN"I tried ${RED}sed -i bkp -e \'/Uncomment/s/^# //g\' IPython/core/relea' | |||||
104 | sed -i bkp -e '/Uncomment/s/^# //g' IPython/core/release.py |
|
117 | sed -i bkp -e '/Uncomment/s/^# //g' IPython/core/release.py | |
105 | rm IPython/core/release.pybkp |
|
118 | rm IPython/core/release.pybkp | |
106 | git diff |
|
119 | git diff | |
|
120 | maybe_edit IPython/core/release.py | |||
107 |
|
121 | |||
108 | echo $GREEN"Press enter to continue"$NOR |
|
122 | echo $GREEN"Press enter to continue"$NOR | |
109 | read |
|
123 | read | |
@@ -151,6 +165,7 b' then' | |||||
151 | rm IPython/core/release.pybkp |
|
165 | rm IPython/core/release.pybkp | |
152 | git diff |
|
166 | git diff | |
153 | echo $GREEN"Please bump ${RED}the minor version number${NOR}" |
|
167 | echo $GREEN"Please bump ${RED}the minor version number${NOR}" | |
|
168 | maybe_edit IPython/core/release.py | |||
154 | echo ${BLUE}"Do not commit yet – we'll do it later."$NOR |
|
169 | echo ${BLUE}"Do not commit yet – we'll do it later."$NOR | |
155 |
|
170 | |||
156 |
|
171 |
General Comments 0
You need to be logged in to leave comments.
Login now