summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 36b75c95d..c2f77182e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -87,6 +87,20 @@ Release date: TBA
* The ``testutils`` for unittests now accept ``end_lineno`` and ``end_column``. Tests
without these will trigger a ``DeprecationWarning``.
+* ``missing-raises-doc`` will now check the class hierarchy of the raised exceptions
+
+ .. code-block:: python
+
+ def my_function()
+ """My function.
+
+ Raises:
+ Exception: if something fails
+ """
+ raise ValueError
+
+ Closes #4955
+
..
Insert your changelog randomly, it will reduce merge conflicts
(Ie. not necessarily at the end)