##// END OF EJS Templates
release 7.6.0
Matthias Bussonnier -
Show More
@@ -24,7 +24,7 b' _version_minor = 6'
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]
@@ -10,6 +10,9 b' read VERSION'
10 echo -n 'branch (master|X.y):'
10 echo -n 'branch (master|X.y):'
11 read branch
11 read branch
12
12
13 RED=$(tput setaf 1)
14 NOR=$(tput sgr0)
15
13 echo
16 echo
14 echo "updating what's new with informations from docs/source/whatsnew/pr"
17 echo "updating what's new with informations from docs/source/whatsnew/pr"
15 python tools/update_whatsnew.py
18 python tools/update_whatsnew.py
@@ -37,7 +40,8 b' read'
37 echo "Cleaning repository"
40 echo "Cleaning repository"
38 git clean -xfdi
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 echo "Press enter to continue"
46 echo "Press enter to continue"
43 read
47 read
@@ -55,3 +59,9 b' echo "Attempting to build package..."'
55
59
56 tools/build_release
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