diff --git a/docs/source/whatsnew/development.rst b/docs/source/whatsnew/development.rst index 99821d1..f2bde11 100644 --- a/docs/source/whatsnew/development.rst +++ b/docs/source/whatsnew/development.rst @@ -22,6 +22,7 @@ Need to be updated: pr/* + .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. As a reminder, IPython master has diverged from the 7.x branch, thus master may diff --git a/docs/source/whatsnew/pr/interruptible-debugger.rst b/docs/source/whatsnew/pr/interruptible-debugger.rst deleted file mode 100644 index f501b34..0000000 --- a/docs/source/whatsnew/pr/interruptible-debugger.rst +++ /dev/null @@ -1,4 +0,0 @@ -IPython.core.debugger.Pdb is now interruptible -============================================== - -A ``KeyboardInterrupt`` will now interrupt IPython's extended debugger, in order to make Jupyter able to interrupt it. diff --git a/docs/source/whatsnew/pr/video-display-attributes.rst b/docs/source/whatsnew/pr/video-display-attributes.rst deleted file mode 100644 index 1e7434e..0000000 --- a/docs/source/whatsnew/pr/video-display-attributes.rst +++ /dev/null @@ -1,4 +0,0 @@ -Video HTML attributes -===================== - -Add an option to `IPython.display.Video` to change the attributes of the HTML display of the video. diff --git a/docs/source/whatsnew/version7.rst b/docs/source/whatsnew/version7.rst index c35a465..3d9abc9 100644 --- a/docs/source/whatsnew/version7.rst +++ b/docs/source/whatsnew/version7.rst @@ -18,6 +18,10 @@ Misc Noticeable changes: - Document the ability to have systemwide configuration for IPython. :ghpull:`12328` - Fix issues with input autoformatting :ghpull:`12336` + - ``IPython.core.debugger.Pdb`` is now interruptible (:ghpull:`12168`, in 7.14 + but forgotten in release notes) + - Video HTML attributes (:ghpull:`12212`, in 7.14 but forgotten in release + notes) Reproducible Build ------------------ @@ -109,6 +113,17 @@ Misc Changes - add extra options to the ``Video`` Rich objects :ghpull:`12212` - add pretty-printing to ``SimpleNamespace`` :ghpull:`12230` +IPython.core.debugger.Pdb is now interruptible +---------------------------------------------- + +A ``KeyboardInterrupt`` will now interrupt IPython's extended debugger, in order to make Jupyter able to interrupt it. (:ghpull:`12168`) + +Video HTML attributes +--------------------- + +Add an option to `IPython.display.Video` to change the attributes of the HTML display of the video (:ghpull:`12212`) + + Pending deprecated imports --------------------------