From 3bbbb455825dbad6414a8febc318c9c8d655ed4b 2015-08-11 22:28:31 From: Min RK Date: 2015-08-11 22:28:31 Subject: [PATCH] run update whatsnew --- diff --git a/docs/source/whatsnew/development.rst b/docs/source/whatsnew/development.rst index fed287d..960f1a4 100644 --- a/docs/source/whatsnew/development.rst +++ b/docs/source/whatsnew/development.rst @@ -11,6 +11,21 @@ This document describes in-flight development work. `docs/source/whatsnew/pr` folder +Added a ``Valid`` widget which inherits the ``_Bool`` widget and displays a green checkmark or red cross depending on the truth of ``.value``. + +Callbacks registered with the ``Widget.on_some_change`` method are passed the Backbone model ``change`` event's arguments. + +The serialization of widget traitlets can be customized. Custom serialization can use binary message buffers. Refer to :ghpull:`7757` for more information. + +Code raising ``DeprecationWarning`` +entered by the user in an interactive session will now display the warning by +default. See :ghpull:`8480` an :ghissue:`8478`. + +The `--deep-reload` flag and the corresponding options to inject `dreload` or +`reload` into the interactive namespace have been deprecated, and will be +removed in future versions. You should now explicitly import `reload` from +`IPython.lib.deepreload` to use it. + .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. @@ -20,4 +35,3 @@ Backwards incompatible changes .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. - diff --git a/docs/source/whatsnew/pr/deprecation_warning.rst b/docs/source/whatsnew/pr/deprecation_warning.rst deleted file mode 100644 index 3ba538b..0000000 --- a/docs/source/whatsnew/pr/deprecation_warning.rst +++ /dev/null @@ -1,4 +0,0 @@ -Code raising ``DeprecationWarning`` -entered by the user in an interactive session will now display the warning by -default. See :ghpull:`8480` an :ghissue:`8478`. - diff --git a/docs/source/whatsnew/pr/no-dreload.rst b/docs/source/whatsnew/pr/no-dreload.rst deleted file mode 100644 index 579d15c..0000000 --- a/docs/source/whatsnew/pr/no-dreload.rst +++ /dev/null @@ -1,4 +0,0 @@ -The `--deep-reload` flag and the corresponding options to inject `dreload` or -`reload` into the interactive namespace have been deprecated, and will be -removed in future versions. You should now explicitly import `reload` from -`IPython.lib.deepreload` to use it. diff --git a/docs/source/whatsnew/pr/on_some_change_args.rst b/docs/source/whatsnew/pr/on_some_change_args.rst deleted file mode 100644 index e36ea70..0000000 --- a/docs/source/whatsnew/pr/on_some_change_args.rst +++ /dev/null @@ -1 +0,0 @@ -Callbacks registered with the ``Widget.on_some_change`` method are passed the Backbone model ``change`` event's arguments. diff --git a/docs/source/whatsnew/pr/valid-widget.rst b/docs/source/whatsnew/pr/valid-widget.rst deleted file mode 100644 index feed836..0000000 --- a/docs/source/whatsnew/pr/valid-widget.rst +++ /dev/null @@ -1 +0,0 @@ -Added a ``Valid`` widget which inherits the ``_Bool`` widget and displays a green checkmark or red cross depending on the truth of ``.value``. diff --git a/docs/source/whatsnew/pr/widget_custom_serialization.rst b/docs/source/whatsnew/pr/widget_custom_serialization.rst deleted file mode 100644 index 725aa4d..0000000 --- a/docs/source/whatsnew/pr/widget_custom_serialization.rst +++ /dev/null @@ -1 +0,0 @@ -The serialization of widget traitlets can be customized. Custom serialization can use binary message buffers. Refer to :ghpull:`7757` for more information.