diff --git a/docs/source/whatsnew/development.rst b/docs/source/whatsnew/development.rst index 3bdbc3e..13f02a4 100644 --- a/docs/source/whatsnew/development.rst +++ b/docs/source/whatsnew/development.rst @@ -11,6 +11,7 @@ This document describes in-flight development work. `docs/source/whatsnew/pr` folder + .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. diff --git a/docs/source/whatsnew/pr/aliasmagicparams-feature.rst b/docs/source/whatsnew/pr/aliasmagicparams-feature.rst deleted file mode 100644 index d6a4287..0000000 --- a/docs/source/whatsnew/pr/aliasmagicparams-feature.rst +++ /dev/null @@ -1,22 +0,0 @@ -Added the ability to add parameters to alias_magic. - -e.g.: - -In [2]: %alias_magic hist history --params "-l 2" --line -Created `%hist` as an alias for `%history -l 2`. - -In [3]: hist -%alias_magic hist history --params "-l 30" --line -%alias_magic hist history --params "-l 2" --line - -Previously it was only possible to have an alias attached to a single function, and you would have to pass in the given parameters every time. - -e.g.: - -In [4]: %alias_magic hist history --line -Created `%hist` as an alias for `%history`. - -In [5]: hist -l 2 -hist -%alias_magic hist history --line - diff --git a/docs/source/whatsnew/pr/escape-quoted-filenames.rst b/docs/source/whatsnew/pr/escape-quoted-filenames.rst deleted file mode 100644 index 75d25a2..0000000 --- a/docs/source/whatsnew/pr/escape-quoted-filenames.rst +++ /dev/null @@ -1,2 +0,0 @@ -- Quotes in a filename are always escaped during tab-completion on non-Windows. - :ghpull:`10069` diff --git a/docs/source/whatsnew/pr/logstate_quiet.rst b/docs/source/whatsnew/pr/logstate_quiet.rst deleted file mode 100644 index d2e3cf9..0000000 --- a/docs/source/whatsnew/pr/logstate_quiet.rst +++ /dev/null @@ -1 +0,0 @@ -To suppress log state messages, you can now either use ``%logstart -q`` or pass ``--LoggingMagics.quiet=True`` on the command line. diff --git a/docs/source/whatsnew/pr/term-title-format-feature.rst b/docs/source/whatsnew/pr/term-title-format-feature.rst deleted file mode 100644 index 739b9ab..0000000 --- a/docs/source/whatsnew/pr/term-title-format-feature.rst +++ /dev/null @@ -1,2 +0,0 @@ -An additional flag `--TerminalInteractiveShell.term_title_format` is introduced to allow the user to control the format of the terminal -title. It is specified as a python format string, and currently the only variable it will format is `{cwd}`. diff --git a/docs/source/whatsnew/pr/variables-shadow-magics-in-autocompletion.rst b/docs/source/whatsnew/pr/variables-shadow-magics-in-autocompletion.rst deleted file mode 100644 index e85e23a..0000000 --- a/docs/source/whatsnew/pr/variables-shadow-magics-in-autocompletion.rst +++ /dev/null @@ -1 +0,0 @@ -Variables now shadow magics in autocompletion. See :ghissue:`4877` and :ghpull:`10542`. diff --git a/docs/source/whatsnew/version5.rst b/docs/source/whatsnew/version5.rst index 6d795b1..3a4169e 100644 --- a/docs/source/whatsnew/version5.rst +++ b/docs/source/whatsnew/version5.rst @@ -2,6 +2,8 @@ 5.x Series ============ +.. _whatsnew540: + IPython 5.4 =========== diff --git a/docs/source/whatsnew/version6.rst b/docs/source/whatsnew/version6.rst index b613ce3..8842260 100644 --- a/docs/source/whatsnew/version6.rst +++ b/docs/source/whatsnew/version6.rst @@ -2,6 +2,59 @@ 6.x Series ============ +.. _whatsnew610: + +IPython 6.1 +=========== + +- Quotes in a filename are always escaped during tab-completion on non-Windows. + :ghpull:`10069` + +- Variables now shadow magics in autocompletion. See :ghissue:`4877` and :ghpull:`10542`. + +- Added the ability to add parameters to alias_magic. For example :: + + In [2]: %alias_magic hist history --params "-l 2" --line + Created `%hist` as an alias for `%history -l 2`. + + In [3]: hist + %alias_magic hist history --params "-l 30" --line + %alias_magic hist history --params "-l 2" --line + +Previously it was only possible to have an alias attached to a single function, +and you would have to pass in the given parameters every time:: + + In [4]: %alias_magic hist history --line + Created `%hist` as an alias for `%history`. + + In [5]: hist -l 2 + hist + %alias_magic hist history --line + +- To suppress log state messages, you can now either use ``%logstart -q``, pass + ``--LoggingMagics.quiet=True`` on the command line, or set + ``c.LoggingMagics.quiet=True`` in your configuration file. + +- An additional flag ``--TerminalInteractiveShell.term_title_format`` is + introduced to allow the user to control the format of the terminal title. It + is specified as a python format string, and currently the only variable it + will format is ``{cwd}``. + + +The following changes were also added to IPython 5.4, see :ref:`what's new in IPython 5.4 ` +for more detail description: + +- ``TerminalInteractiveShell`` is configurable and can be configured to + (re)-use the readline interface. + +- objects can now define a ``_repr_mimebundle_`` + +- Execution heuristics improve for single line statements +- ``display()`` can now return a display id to update display areas. + + +.. _whatsnew600: + IPython 6.0 ===========