Show More
@@ -24,7 +24,7 b' _version_minor = 6' | |||
|
24 | 24 | _version_patch = 0 |
|
25 | 25 | _version_extra = '.dev' |
|
26 | 26 | # _version_extra = 'b1' |
|
27 |
|
|
|
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] |
@@ -10,6 +10,9 b' read VERSION' | |||
|
10 | 10 | echo -n 'branch (master|X.y):' |
|
11 | 11 | read branch |
|
12 | 12 | |
|
13 | RED=$(tput setaf 1) | |
|
14 | NOR=$(tput sgr0) | |
|
15 | ||
|
13 | 16 | echo |
|
14 | 17 | echo "updating what's new with informations from docs/source/whatsnew/pr" |
|
15 | 18 | python tools/update_whatsnew.py |
@@ -37,7 +40,8 b' read' | |||
|
37 | 40 | echo "Cleaning repository" |
|
38 | 41 | git clean -xfdi |
|
39 | 42 | |
|
40 |
echo "please update version number in IPython/core/release.py |
|
|
43 | echo "please update version number in ${RED}IPython/core/release.py${NOR} , Do not commit | |
|
44 | yet – we'll do it later." | |
|
41 | 45 | |
|
42 | 46 | echo "Press enter to continue" |
|
43 | 47 | read |
@@ -55,3 +59,9 b' echo "Attempting to build package..."' | |||
|
55 | 59 | |
|
56 | 60 | tools/build_release |
|
57 | 61 | |
|
62 | echo | |
|
63 | echo "Let\'s commit : git commit -am \"release $VERSION\" -S" | |
|
64 | echo "Press enter to continue" | |
|
65 | read | |
|
66 | git commit -am "release $VERSION" | |
|
67 |
General Comments 0
You need to be logged in to leave comments.
Login now