summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Gundry <adam@well-typed.com>2023-03-20 20:18:43 +0000
committersheaf <sam.derbyshire@gmail.com>2023-03-23 13:54:35 +0100
commit01f9e3a6040e1cb5fe21962d5a425ca2c98dc8fa (patch)
tree644433ba9895813520451152b52e4fe8cd3d7d36
parentc86b68d85fb09aea1015f8d7ca709ef2e5a33ad6 (diff)
downloadhaskell-wip/amg/warning-categories.tar.gz
Move mention of warning groups change to 9.8.1 release noteswip/amg/warning-categories
-rw-r--r--docs/users_guide/9.6.1-notes.rst5
-rw-r--r--docs/users_guide/9.8.1-notes.rst5
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/users_guide/9.6.1-notes.rst b/docs/users_guide/9.6.1-notes.rst
index 4755d4e216..eaed67da22 100644
--- a/docs/users_guide/9.6.1-notes.rst
+++ b/docs/users_guide/9.6.1-notes.rst
@@ -149,11 +149,6 @@ Compiler
- The :ghc-flag:`-Wstar-is-type` warning is now enabled by default.
-- The ``-Wno-⟨wflag⟩``, ``-Werror=⟨wflag⟩`` and ``-Wwarn=⟨wflag⟩`` options are
- now defined systematically for all warning groups (for example,
- ``-Wno-default``, ``-Werror=unused-binds`` and ``-Wwarn=all`` are now
- accepted). See :ref:`options-sanity`.
-
GHCi
~~~~
diff --git a/docs/users_guide/9.8.1-notes.rst b/docs/users_guide/9.8.1-notes.rst
index e0eedfe0e7..97d7829ce3 100644
--- a/docs/users_guide/9.8.1-notes.rst
+++ b/docs/users_guide/9.8.1-notes.rst
@@ -35,6 +35,11 @@ Compiler
- Fix a bug in TH causing excessive calls to ``setNumCapabilities`` when ``-j`` is greater than ``-N``.
See GHC ticket #23049.
+- The ``-Wno-⟨wflag⟩``, ``-Werror=⟨wflag⟩`` and ``-Wwarn=⟨wflag⟩`` options are
+ now defined systematically for all warning groups (for example,
+ ``-Wno-default``, ``-Werror=unused-binds`` and ``-Wwarn=all`` are now
+ accepted). See :ref:`options-sanity`.
+
- ``WARNING`` pragmas may now be annotated with a category, following
`GHC proposal #541 <https://github.com/ghc-proposals/ghc-proposals/blob/master/proposals/0541-warning-pragmas-with-categories.rst>`_, in which case they are controlled with new
``-Wx-⟨category⟩`` flags rather than :ghc-flag:`-Wdeprecations`.