diff --git a/.mailmap b/.mailmap index 0e37a65..8d4757e 100644 --- a/.mailmap +++ b/.mailmap @@ -1,4 +1,5 @@ A. J. Holyoake ajholyoake +Alok Singh Alok Singh <8325708+alok@users.noreply.github.com> Aaron Culich Aaron Culich Aron Ahmadia ahmadia Benjamin Ragan-Kelley diff --git a/docs/source/whatsnew/version7.rst b/docs/source/whatsnew/version7.rst index 66c716f..8924d85 100644 --- a/docs/source/whatsnew/version7.rst +++ b/docs/source/whatsnew/version7.rst @@ -22,8 +22,9 @@ Python 3.8. :ghpull:`11720` - Unicode names for the completion are loaded lazily on first use which should decrease startup time. :ghpull:`11693` - - Autoreload now fix the types of reloaded objects; this for example allow + - Autoreload now update the types of reloaded objects; this for example allow pickling of reloaded objects. :ghpull:`11644` + - Fix a big where ``%%time`` magic would suppress cell output. :ghpull:`11716` Prepare migration to pytest (instead of nose) for testing @@ -51,6 +52,10 @@ experience better. Misc ---- +We skipped the release of 7.6 at the end of May, but will attempt to get back +on schedule. We are starting to think about making introducing backward +incompatible change and start the 8.0 series. + Special Thanks to Gabriel (@gpotter2 on GitHub), who among other took care many of the remaining task for 7.4 and 7.5, like updating the website. diff --git a/tools/release_helper.sh b/tools/release_helper.sh index 55e7b40..79d25fa 100644 --- a/tools/release_helper.sh +++ b/tools/release_helper.sh @@ -1,13 +1,13 @@ # Simple tool to help for release # when releasing with bash, simplei source it to get asked questions. -echo -n PREV_RELEASE: +echo -n 'PREV_RELEASE (X.y.z):' read PREV_RELEASE -echo -n MILESTONE: +echo -n 'MILESTONE (X.y):' read MILESTONE -echo -n VERSION: +echo -n 'VERSION (X.y.z):' read VERSION -echo -n branch: +echo -n 'branch (master|X.y):' read branch echo