##// END OF EJS Templates
fix typos, migrate latest to release notes
Paul Ivanov -
Show More
@@ -23,15 +23,10 b' Need to be updated:'
23 pr/*
23 pr/*
24
24
25
25
26 The ``%%script`` (as well as ``%%bash``, ``ruby``... ) cell magic no raise by
27 default if the return code of the given code is non-zero (this halting execution
28 of further cells in a notebook). The behavior can be disable by passing the
29 ``--no-raise-error`` flag.
30
31 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
26 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
32
27
33
28
34 Backwards incompatible changes
29 Backwards incompatible changes
35 ------------------------------
30 ------------------------------
36
31
37 .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. No newline at end of file
32 .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT.
@@ -9,25 +9,25 b' IPython 7.0.0'
9
9
10 .. warning::
10 .. warning::
11
11
12 IPython 7.0 is currently in Beta, Feedback on API/changes and
12 IPython 7.0 is currently in Beta. We welcome feedback on API/changes and
13 addition/updates to this cahngelog are welcomed.
13 addition/updates to this changelog.
14
14
15 Released .... ...., 2017
15 Released .... ...., 2018
16
16
17 IPython 7 include major features improvement as you can read in the following
17 IPython 7 include major features improvement as you can read in the following
18 changelog. This is also the second major version of IPython to stop support only
18 changelog. This is also the second major version of IPython to support only
19 Python 3 – starting at Python 3.4. Python 2 is still still community supported
19 Python 3 – starting at Python 3.4. Python 2 is still community supported
20 on the bugfix only 5.x branch, but we remind you that Python 2 EOL is Jan 1st
20 on the bugfix only 5.x branch, but we remind you that Python 2 "end of life"
21 2020.
21 is on Jan 1st 2020.
22
22
23 We were able to backport bug fixes to the 5.x branch thanks to our backport bot which
23 We were able to backport bug fixes to the 5.x branch thanks to our backport bot which
24 backported more than `70 Pull-Requests
24 backported more than `70 Pull-Requests
25 <https://github.com/ipython/ipython/pulls?page=3&q=is%3Apr+sort%3Aupdated-desc+author%3Aapp%2Fmeeseeksdev++5.x&utf8=%E2%9C%93>`_, but there are still many PRs that required manually work, and this is an area of the project were you can easily contribute by looking for `PRs still needed backport <https://github.com/ipython/ipython/issues?q=label%3A%22Still+Needs+Manual+Backport%22+is%3Aclosed+sort%3Aupdated-desc>`_
25 <https://github.com/ipython/ipython/pulls?page=3&q=is%3Apr+sort%3Aupdated-desc+author%3Aapp%2Fmeeseeksdev++5.x&utf8=%E2%9C%93>`_, but there are still many PRs that required manually work, and this is an area of the project were you can easily contribute by looking for `PRs still needed backport <https://github.com/ipython/ipython/issues?q=label%3A%22Still+Needs+Manual+Backport%22+is%3Aclosed+sort%3Aupdated-desc>`_
26
26
27 IPython 6.x branch will likely not see any further release unless we critical
27 IPython 6.x branch will likely not see any further release unless critical
28 bugs are found.
28 bugs are found.
29
29
30 Make sure you have pip > 9.0 before upgrading. You should be able to update by simply runngin
30 Make sure you have pip > 9.0 before upgrading. You should be able to update by simply running
31
31
32 .. code::
32 .. code::
33
33
@@ -44,7 +44,7 b' Or if you have conda installed:'
44 Prompt Toolkit 2.0
44 Prompt Toolkit 2.0
45 ------------------
45 ------------------
46
46
47 IPython 7.0+ now use ``prompt_toolkit 2.0``, if you still need to use earlier
47 IPython 7.0+ now uses ``prompt_toolkit 2.0``, if you still need to use earlier
48 ``prompt_toolkit`` version you may need to pin IPython to ``<7.0``.
48 ``prompt_toolkit`` version you may need to pin IPython to ``<7.0``.
49
49
50 Autowait: Asynchronous REPL
50 Autowait: Asynchronous REPL
@@ -145,7 +145,7 b' This took more than a year in the making, and the code was rebased a number of'
145 time leading to commit authorship that may have been lost in the final
145 time leading to commit authorship that may have been lost in the final
146 Pull-Request. Huge thanks to many people for contribution, discussion, code,
146 Pull-Request. Huge thanks to many people for contribution, discussion, code,
147 documentation, use-case: dalejung, danielballan, ellisonbg, fperez, gnestor,
147 documentation, use-case: dalejung, danielballan, ellisonbg, fperez, gnestor,
148 minrk, njsmith, pganssle, tacaswell, takluyver , vidartf ... And many other.
148 minrk, njsmith, pganssle, tacaswell, takluyver , vidartf ... And many others.
149
149
150
150
151 Autoreload Improvement
151 Autoreload Improvement
@@ -194,7 +194,10 b' un-deprecated in :ghpull:`11257`'
194 Make ``%run -n -i ...`` work correctly. Earlier, if ``%run`` was passed both arguments, ``-n`` would be silently ignored. See :ghpull:`10308`
194 Make ``%run -n -i ...`` work correctly. Earlier, if ``%run`` was passed both arguments, ``-n`` would be silently ignored. See :ghpull:`10308`
195
195
196
196
197
197 The ``%%script`` (as well as ``%%bash``, ``ruby``... ) cell magics now raise
198 by default if the return code of the given code is non-zero (thus halting
199 execution of further cells in a notebook). The behavior can be disable by
200 passing the ``--no-raise-error`` flag.
198
201
199
202
200 Deprecations
203 Deprecations
General Comments 0
You need to be logged in to leave comments. Login now