##// END OF EJS Templates
update colors
Matthias Bussonnier -
Show More
@@ -18,31 +18,38 b' read VERSION'
18 echo -n 'branch (master|X.y):'
18 echo -n 'branch (master|X.y):'
19 read branch
19 read branch
20
20
21 BLACK=$(tput setaf 1)
21 RED=$(tput setaf 1)
22 RED=$(tput setaf 1)
23 GREEN=$(tput setaf 2)
24 YELLOW=$(tput setaf 3)
25 BLUE=$(tput setaf 4)
26 MAGENTA=$(tput setaf 5)
27 CYAN=$(tput setaf 6)
28 WHITE=$(tput setaf 7)
22 NOR=$(tput sgr0)
29 NOR=$(tput sgr0)
23
30
24 echo
31 echo
25 echo "updating what's new with informations from docs/source/whatsnew/pr"
32 echo $BLUE"Updating what's new with informations from docs/source/whatsnew/pr"$NOR
26 python tools/update_whatsnew.py
33 python tools/update_whatsnew.py
27
34
28 echo
35 echo
29 echo "please move the contents of "docs/source/whatsnew/development.rst" to version-X.rst"
36 echo $BLUE"please move the contents of "docs/source/whatsnew/development.rst" to version-X.rst"$NOR
30 echo "Press enter to continue"
37 echo $GREEN"Press enter to continue"$NOR
31 read
38 read
32
39
33 echo
40 echo
34 echo "here are all the authors that contributed to this release:"
41 echo $BLUE"here are all the authors that contributed to this release:"$NOR
35 git log --format="%aN <%aE>" $PREV_RELEASE... | sort -u -f
42 git log --format="%aN <%aE>" $PREV_RELEASE... | sort -u -f
36
43
37 echo
44 echo
38 echo "If you see any duplicates cancel (Ctrl-C), then edit .mailmap" Press enter to continue
45 echo $BLUE"If you see any duplicates cancel (Ctrl-C), then edit .mailmap."$GREEN"Press enter to continue:"$NOR
39 read
46 read
40
47
41 echo "generating stats"
48 echo $BLUE"generating stats"NOR
42 python tools/github_stats.py --milestone $MILESTONE > stats.rst
49 python tools/github_stats.py --milestone $MILESTONE > stats.rst
43
50
44 echo "stats.rst files generated. Please merge it with the right file (github-stats-X.rst)"
51 echo $BLUE"stats.rst files generated."$GREEN"Please merge it with the right file (github-stats-X.rst)"$NOR
45 echo "press enter to continue."
52 echo $GREEN"press enter to continue."$NOR
46 read
53 read
47
54
48 echo "Cleaning repository"
55 echo "Cleaning repository"
General Comments 0
You need to be logged in to leave comments. Login now