From bc8b2d22f3b7738a407f72e2d7dda4d531ce2bb3 2023-09-01 12:39:54 From: Matthias Bussonnier Date: 2023-09-01 12:39:54 Subject: [PATCH] release 8.15.0 --- diff --git a/IPython/core/release.py b/IPython/core/release.py index b99bb8e..a1df4d1 100644 --- a/IPython/core/release.py +++ b/IPython/core/release.py @@ -20,7 +20,7 @@ _version_minor = 15 _version_patch = 0 _version_extra = ".dev" # _version_extra = "rc1" -# _version_extra = "" # Uncomment this for full releases +_version_extra = "" # Uncomment this for full releases # Construct full version string from these. _ver = [_version_major, _version_minor, _version_patch] diff --git a/docs/source/whatsnew/pr/native_fallback_exceptiongroup.rst b/docs/source/whatsnew/pr/native_fallback_exceptiongroup.rst deleted file mode 100644 index fd6abff..0000000 --- a/docs/source/whatsnew/pr/native_fallback_exceptiongroup.rst +++ /dev/null @@ -1,3 +0,0 @@ -Native fallback for displaying ExceptionGroup ---------------------------------------------- -ExceptionGroups are now displayed with `traceback.print_exc`, as a temporary fix until UltraTB properly supports displaying child exceptions. diff --git a/docs/source/whatsnew/pr/pep678-notes.rst b/docs/source/whatsnew/pr/pep678-notes.rst deleted file mode 100644 index 7d564d6..0000000 --- a/docs/source/whatsnew/pr/pep678-notes.rst +++ /dev/null @@ -1,5 +0,0 @@ -Support for PEP-678 Exception Notes ------------------------------------ - -Ultratb now shows :pep:`678` notes, improving your debugging experience on -Python 3.11+ or with libraries such as Pytest and Hypothesis. diff --git a/docs/source/whatsnew/version8.rst b/docs/source/whatsnew/version8.rst index 0718817..33b0d08 100644 --- a/docs/source/whatsnew/version8.rst +++ b/docs/source/whatsnew/version8.rst @@ -25,6 +25,16 @@ Among other, IPython 8.15: changed :ghpull:`14119` - Fix multiple issues with matplotlib interactive mode, qt5/qt6 :ghpull:`14128` +Support for PEP-678 Exception Notes +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Ultratb now shows :pep:`678` notes, improving your debugging experience on +Python 3.11+ or with libraries such as Pytest and Hypothesis. + +Native fallback for displaying ExceptionGroup +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +ExceptionGroups are now displayed with ``traceback.print_exc``, as a temporary fix until UltraTB properly supports displaying child exceptions. + We have two larger features: