##// END OF EJS Templates
Add release notes for 6.3
Thomas Kluyver -
Show More
@@ -1,10 +1,58 b''
1 Issues closed in the 6.x development cycle
1 Issues closed in the 6.x development cycle
2 ==========================================
2 ==========================================
3
3
4 Issues closed in 6.2
4 Issues closed in 6.3
5 --------------------
5 --------------------
6
6
7
7
8 GitHub stats for 2017/09/15 - 2018/04/02 (tag: 6.2.0)
9
10 These lists are automatically generated, and may be incomplete or contain duplicates.
11
12 We closed 10 issues and merged 50 pull requests.
13 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A6.3>`__
14
15 The following 35 authors contributed 253 commits.
16
17 * Anatoly Techtonik
18 * Antony Lee
19 * Benjamin Ragan-Kelley
20 * Corey McCandless
21 * Craig Citro
22 * Cristian Ciupitu
23 * David Cottrell
24 * David Straub
25 * Doug Latornell
26 * Fabio Niephaus
27 * Gergely Nagy
28 * Henry Fredrick Schreiner
29 * Hugo
30 * Ismael Venegas Castelló
31 * Ivan Gonzalez
32 * J Forde
33 * Jeremy Sikes
34 * Joris Van den Bossche
35 * Lesley Cordero
36 * luzpaz
37 * madhu94
38 * Matthew R. Scott
39 * Matthias Bussonnier
40 * Matthias Geier
41 * Olesya Baranova
42 * Peter Williams
43 * Rastislav Barlik
44 * Roshan Rao
45 * rs2
46 * Samuel Lelièvre
47 * Shailyn javier Ortiz jimenez
48 * Sjoerd de Vries
49 * Teddy Rendahl
50 * Thomas A Caswell
51 * Thomas Kluyver
52
53 Issues closed in 6.2
54 --------------------
55
8 GitHub stats for 2017/05/31 - 2017/09/15 (tag: 6.1.0)
56 GitHub stats for 2017/05/31 - 2017/09/15 (tag: 6.1.0)
9
57
10 These lists are automatically generated, and may be incomplete or contain duplicates.
58 These lists are automatically generated, and may be incomplete or contain duplicates.
@@ -3,6 +3,33 b''
3 ============
3 ============
4
4
5
5
6 .. _whatsnew630:
7
8 IPython 6.3
9 ===========
10
11 IPython 6.3 contains all the bug fixes and features in
12 :ref:`IPython 5.6 <whatsnew560>`. In addition:
13
14 * A new display class :class:`IPython.display.Code` can be used to display
15 syntax highlighted code in a notebook (:ghpull:`10978`).
16 * The :cellmagic:`html` magic now takes a ``--isolated`` option to put the
17 content in an iframe (:ghpull:`10962`).
18 * The code to find completions using the Jedi library has had various
19 adjustments. This is still a work in progress, but we hope this version has
20 fewer annoyances (:ghpull:`10956`, :ghpull:`10969`, :ghpull:`10999`,
21 :ghpull:`11035`, :ghpull:`11063`, :ghpull:`11065`).
22 * The *post* event callbacks are now always called, even when the execution failed
23 (for example because of a ``SyntaxError``).
24 * The execution info and result objects are now made available in the
25 corresponding *pre* or *post* ``*_run_cell`` :doc:`event callbacks </config/callbacks>`
26 in a backward compatible manner (:ghissue:`10774` and :ghpull:`10795`).
27 * Performance with very long code cells (hundreds of lines) is greatly improved
28 (:ghpull:`10898`). Further improvements are planned for IPython 7.
29
30 You can see all `pull requests for the 6.3 milestone
31 <https://github.com/ipython/ipython/pulls?utf8=%E2%9C%93&q=is%3Apr+milestone%3A6.3+is%3Aclosed>`__.
32
6 .. _whatsnew620:
33 .. _whatsnew620:
7
34
8 IPython 6.2
35 IPython 6.2
@@ -212,7 +212,7 b' if __name__ == "__main__":'
212
212
213 print("We closed %d issues and merged %d pull requests." % (n_issues, n_pulls))
213 print("We closed %d issues and merged %d pull requests." % (n_issues, n_pulls))
214 if milestone:
214 if milestone:
215 print("The full list can be seen `on GitHub <https://github.com/{project}/issues?q=milestone%3A{milestone}+>`__".format(project=project,milestone=milestone)
215 print("The full list can be seen `on GitHub <https://github.com/{project}/issues?q=milestone%3A{milestone}>`__".format(project=project,milestone=milestone)
216 )
216 )
217
217
218 print()
218 print()
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