diff options
author | Ben Gamari <ben@smart-cactus.org> | 2016-02-25 19:26:46 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-02-25 19:26:46 +0100 |
commit | 20ab2adf7938bf1c6afed38509b4b01102bceff9 (patch) | |
tree | da114211f4c295e3605f28702bea5662cf6ddcd5 /docs | |
parent | e38c07bf5ceb8f50fa5110b70b3b83f0ce1358ba (diff) | |
download | haskell-20ab2adf7938bf1c6afed38509b4b01102bceff9.tar.gz |
Note new GHC.Generics instances in release notes
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/8.0.1-notes.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/users_guide/8.0.1-notes.rst b/docs/users_guide/8.0.1-notes.rst index 5943ed23ce..17c15ac428 100644 --- a/docs/users_guide/8.0.1-notes.rst +++ b/docs/users_guide/8.0.1-notes.rst @@ -539,6 +539,11 @@ See ``changelog.md`` in the ``base`` package for full release notes. to define custom compile-time error messages. (see :ref:`custom-errors` and the original :ghc-wiki:`proposal <Proposal/CustomTypeErrors>`). +- The datatypes in ``GHC.Generics`` now have ``Enum``, ``Bounded``, ``Ix``, + ``Functor``, ``Applicative``, ``Monad``, ``MonadFix``, ``MonadPlus``, ``MonadZip``, + ``Foldable``, ``Foldable``, ``Traversable``, ``Generic1``, and ``Data`` instances + as appropriate. (:ghc-ticket:`9043`) + - The ``Generic`` instance for ``Proxy`` is now poly-kinded (see :ghc-ticket:`10775`) - The ``IsString`` instance for ``[Char]`` has been modified to eliminate |