##// END OF EJS Templates
Merge pull request #11805 from Carreau/wn76+...
Matthias Bussonnier -
r25126:83d411c2 merge
parent child Browse files
Show More
@@ -1,4 +1,5 b''
1 A. J. Holyoake <a.j.holyoake@gmail.com> ajholyoake <a.j.holyoake@gmail.com>
1 A. J. Holyoake <a.j.holyoake@gmail.com> ajholyoake <a.j.holyoake@gmail.com>
2 Alok Singh <alokbeniwal@gmail.com> Alok Singh <8325708+alok@users.noreply.github.com>
2 Aaron Culich <aculich@gmail.com> Aaron Culich <aculich@eecs.berkeley.edu>
3 Aaron Culich <aculich@gmail.com> Aaron Culich <aculich@eecs.berkeley.edu>
3 Aron Ahmadia <aron@ahmadia.net> ahmadia <aron@ahmadia.net>
4 Aron Ahmadia <aron@ahmadia.net> ahmadia <aron@ahmadia.net>
4 Benjamin Ragan-Kelley <benjaminrk@gmail.com> <minrk@Mercury.local>
5 Benjamin Ragan-Kelley <benjaminrk@gmail.com> <minrk@Mercury.local>
@@ -22,8 +22,9 b' Python 3.8.'
22 :ghpull:`11720`
22 :ghpull:`11720`
23 - Unicode names for the completion are loaded lazily on first use which
23 - Unicode names for the completion are loaded lazily on first use which
24 should decrease startup time. :ghpull:`11693`
24 should decrease startup time. :ghpull:`11693`
25 - Autoreload now fix the types of reloaded objects; this for example allow
25 - Autoreload now update the types of reloaded objects; this for example allow
26 pickling of reloaded objects. :ghpull:`11644`
26 pickling of reloaded objects. :ghpull:`11644`
27 - Fix a big where ``%%time`` magic would suppress cell output. :ghpull:`11716`
27
28
28
29
29 Prepare migration to pytest (instead of nose) for testing
30 Prepare migration to pytest (instead of nose) for testing
@@ -51,6 +52,10 b' experience better.'
51 Misc
52 Misc
52 ----
53 ----
53
54
55 We skipped the release of 7.6 at the end of May, but will attempt to get back
56 on schedule. We are starting to think about making introducing backward
57 incompatible change and start the 8.0 series.
58
54 Special Thanks to Gabriel (@gpotter2 on GitHub), who among other took care many
59 Special Thanks to Gabriel (@gpotter2 on GitHub), who among other took care many
55 of the remaining task for 7.4 and 7.5, like updating the website.
60 of the remaining task for 7.4 and 7.5, like updating the website.
56
61
@@ -1,13 +1,13 b''
1 # Simple tool to help for release
1 # Simple tool to help for release
2 # when releasing with bash, simplei source it to get asked questions.
2 # when releasing with bash, simplei source it to get asked questions.
3
3
4 echo -n PREV_RELEASE:
4 echo -n 'PREV_RELEASE (X.y.z):'
5 read PREV_RELEASE
5 read PREV_RELEASE
6 echo -n MILESTONE:
6 echo -n 'MILESTONE (X.y):'
7 read MILESTONE
7 read MILESTONE
8 echo -n VERSION:
8 echo -n 'VERSION (X.y.z):'
9 read VERSION
9 read VERSION
10 echo -n branch:
10 echo -n 'branch (master|X.y):'
11 read branch
11 read branch
12
12
13 echo
13 echo
General Comments 0
You need to be logged in to leave comments. Login now