##// END OF EJS Templates
prepare what's new for 4.0
Min RK -
Show More
@@ -0,0 +1,87 b''
1 .. _issues_list_4:
2
3 Issues closed in the 4.x development cycle
4 ==========================================
5
6 Issues closed in 4.0
7 --------------------
8
9
10 GitHub stats for 2015/02/27 - 2015/08/11 (since 3.0)
11
12 These lists are automatically generated, and may be incomplete or contain duplicates.
13
14 We closed 35 issues and merged 125 pull requests.
15 The full list can be seen `on GitHub <https://github.com/ipython/ipython/milestone/4.0>`__
16
17 The following 69 authors contributed 1186 commits.
18
19 * Abe Guerra
20 * Adal Chiriliuc
21 * Alexander Belopolsky
22 * Andrew Murray
23 * Antonio Russo
24 * Benjamin Ragan-Kelley
25 * Björn Linse
26 * Brian Drawert
27 * chebee7i
28 * Daniel Rocco
29 * Donny Winston
30 * Drekin
31 * Erik Hvatum
32 * Fernando Perez
33 * Francisco de la Peña
34 * Frazer McLean
35 * Gareth Elston
36 * Gert-Ludwig Ingold
37 * Giuseppe Venturini
38 * Ian Barfield
39 * Ivan Pozdeev
40 * Jakob Gager
41 * Jan Schulz
42 * Jason Grout
43 * Jeff Hussmann
44 * Jessica B. Hamrick
45 * Joe Borg
46 * Joel Nothman
47 * Johan Forsberg
48 * Jonathan Frederic
49 * Justin Tyberg
50 * Koen van Besien
51 * Kyle Kelley
52 * Lorena Pantano
53 * Lucretiel
54 * Marin Gilles
55 * mashenjun
56 * Mathieu
57 * Matthias Bussonnier
58 * Merlijn van Deen
59 * Mikhail Korobov
60 * Naveen Nathan
61 * Nicholas Bollweg
62 * nottaanibot
63 * Omer Katz
64 * onesandzeroes
65 * Patrick Snape
66 * patter001
67 * Peter Parente
68 * Pietro Battiston
69 * RickWinter
70 * Robert Smith
71 * Ryan Nelson
72 * Scott Sanderson
73 * Sebastiaan Mathot
74 * Sylvain Corlay
75 * thethomask
76 * Thomas A Caswell
77 * Thomas Adriaan Hellinger
78 * Thomas Kluyver
79 * Tianhui Michael Li
80 * tmtabor
81 * unknown
82 * Victor Ramirez
83 * Volker Braun
84 * Wieland Hoffmann
85 * Yuval Langer
86 * Zoltán Vörös
87 * Élie Michel
@@ -0,0 +1,46 b''
1 ============
2 4.x Series
3 ============
4
5 IPython 4.0
6 ===========
7
8 Released August, 2015
9
10 IPython 4.0 is the first major release after the Big Split.
11 IPython no longer contains the notebook, qtconsole, etc. which have moved to
12 `jupyter <https://jupyter.readthedocs.org>`_.
13 IPython subprojects, such as `IPython.parallel <https://ipyparallel.readthedocs.org>`_ and `widgets <https://ipywidgets.readthedocs.org>`_ have moved to their own repos as well.
14
15 The following subpackages are deprecated:
16
17 - IPython.kernel (now jupyter_client and ipykernel)
18 - IPython.consoleapp (now jupyter_client.consoleapp)
19 - IPython.nbformat (now nbformat)
20 - IPython.nbconvert (now nbconvert)
21 - IPython.html (now notebook)
22 - IPython.parallel (now ipyparallel)
23 - IPython.utils.traitlets (now traitlets)
24 - IPython.config (now traitlets.config)
25 - IPython.qt (now qtconsole)
26 - IPython.terminal.console (now jupyter_console)
27
28 and a few other utilities.
29
30 Shims for the deprecated subpackages have been added,
31 so existing code should continue to work with a warning about the new home.
32
33 There are few changes to the code beyond the reorganization and some bugfixes.
34
35 IPython highlights:
36
37 - Public APIs for discovering IPython paths is moved from :mod:`IPython.utils.path` to :mod:`IPython.paths`.
38 The old function locations continue to work with deprecation warnings.
39 - Code raising ``DeprecationWarning``
40 entered by the user in an interactive session will now display the warning by
41 default. See :ghpull:`8480` an :ghissue:`8478`.
42 - The `--deep-reload` flag and the corresponding options to inject `dreload` or
43 `reload` into the interactive namespace have been deprecated, and will be
44 removed in future versions. You should now explicitly import `reload` from
45 `IPython.lib.deepreload` to use it.
46
@@ -10,22 +10,6 b' This document describes in-flight development work.'
10 conflicts for other Pull Requests). Instead, create a new file in the
10 conflicts for other Pull Requests). Instead, create a new file in the
11 `docs/source/whatsnew/pr` folder
11 `docs/source/whatsnew/pr` folder
12
12
13
14 Added a ``Valid`` widget which inherits the ``_Bool`` widget and displays a green checkmark or red cross depending on the truth of ``.value``.
15
16 Callbacks registered with the ``Widget.on_some_change`` method are passed the Backbone model ``change`` event's arguments.
17
18 The serialization of widget traitlets can be customized. Custom serialization can use binary message buffers. Refer to :ghpull:`7757` for more information.
19
20 Code raising ``DeprecationWarning``
21 entered by the user in an interactive session will now display the warning by
22 default. See :ghpull:`8480` an :ghissue:`8478`.
23
24 The `--deep-reload` flag and the corresponding options to inject `dreload` or
25 `reload` into the interactive namespace have been deprecated, and will be
26 removed in future versions. You should now explicitly import `reload` from
27 `IPython.lib.deepreload` to use it.
28
29 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
13 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
30
14
31
15
@@ -21,6 +21,8 b' development work they do here in a user friendly format.'
21 :maxdepth: 1
21 :maxdepth: 1
22
22
23 development
23 development
24 version4
25 github-stats-4
24 version3
26 version3
25 github-stats-3
27 github-stats-3
26 version3_widget_migration
28 version3_widget_migration
General Comments 0
You need to be logged in to leave comments. Login now