##// END OF EJS Templates
Start writing up 5.0 changes.
Matthias Bussonnier -
Show More
@@ -0,0 +1,43 b''
1 ============
2 5.x Series
3 ============
4
5 IPython 5.0
6 ===========
7
8 Released June, 2016
9
10 IPython 5.0 now uses `promt-toolkit` for the command line interface, thus
11 allowing real multi-line editing and syntactic coloration as you type.
12
13
14 When using IPython as a subprocess, like for emacs inferior-shell, IPython can
15 be started with --simple-prompt flag, which will bypass the prompt_toolkit
16 input layer. In this mode completion, prompt color and many other features are
17 disabled.
18
19 Backwards incompatible changes
20 ------------------------------
21
22
23 The `install_ext magic` function which was deprecated since 4.0 have now been deleted.
24 You can still distribute and install extension as packages on PyPI.
25
26 Update IPython event triggering to ensure callback registration and
27 unregistration only affects the set of callbacks the *next* time that event is
28 triggered. See :ghissue:`9447` and :ghpull:`9453`.
29
30 This is a change to the existing semantics, wherein one callback registering a
31 second callback when triggered for an event would previously be invoked for
32 that same event.
33
34 Integration with pydb has been removed since pydb development has been stopped
35 since 2012, and pydb is not installable from PyPI
36
37 IPython 5.0 now uses prompt_toolkit, so any setting that affects ``readline`` will
38 have no effect, and has likely been replaced by a configuration option on
39 IPython itself.
40
41 the `PromptManager` class have been removed, and the prompt machinery simplified.
42 See `TerminalINteractiveShell.prompts` configurable for how to setup your prompts.
43
@@ -11,13 +11,10 b' This document describes in-flight development work.'
11 `docs/source/whatsnew/pr` folder
11 `docs/source/whatsnew/pr` folder
12
12
13
13
14
15
16 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
14 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
17
15
18
16
19 Backwards incompatible changes
17 Backwards incompatible changes
20 ------------------------------
18 ------------------------------
21
19
22
23 .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT.
20 .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT.
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now