From f55b922b7440c1d43be0d680de596f207bc84277 2016-04-20 11:57:53 From: Min RK Date: 2016-04-20 11:57:53 Subject: [PATCH] Backport PR #9410: changelog for 4.2 This should start the release process for 4.2. This is quite a small release, but the `-i` fix is important to get out there. The only thing I see in between us and release is deciding on the path.py/pathlib change in #9408. --- diff --git a/docs/source/conf.py b/docs/source/conf.py index cdf39f9..0f689a4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -201,7 +201,7 @@ html_additional_pages = { # Output file base name for HTML help builder. htmlhelp_basename = 'ipythondoc' -intersphinx_mapping = {'python': ('http://docs.python.org/2/', None), +intersphinx_mapping = {'python': ('http://docs.python.org/3/', None), 'rpy2': ('http://rpy.sourceforge.net/rpy2/doc-2.4/html/', None), 'traitlets': ('http://traitlets.readthedocs.org/en/latest/', None), 'jupyterclient': ('http://jupyter-client.readthedocs.org/en/latest/', None), diff --git a/docs/source/whatsnew/version4.rst b/docs/source/whatsnew/version4.rst index a7fc23c..d8ec8dc 100644 --- a/docs/source/whatsnew/version4.rst +++ b/docs/source/whatsnew/version4.rst @@ -2,6 +2,19 @@ 4.x Series ============ +IPython 4.2 +=========== + +IPython 4.2 (April, 2016) includes various bugfixes and improvements over 4.1. + +- Fix ``ipython -i`` on errors, which was broken in 4.1. +- The delay meant to highlight deprecated commands that have moved to jupyter has been removed. +- Improve compatibility with future versions of traitlets and matplotlib. +- Use stdlib :func:`python:shutil.get_terminal_size` to measure terminal width when displaying tracebacks + (provided by ``backports.shutil_get_terminal_size`` on Python 2). + +You can see the rest `on GitHub `__. + IPython 4.1 ===========