From aad3bb7effca83d809753bf61e95e0b26324aa99 Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Tue, 1 Oct 2024 09:44:07 -0400 Subject: [PATCH] base: Mention incorrect Data.Enum addition in changelog --- libraries/base/changelog.md | 3 ++- libraries/base/src/Data/Enum.hs | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md index c29a8f9cd789..f0d18f1a1d1c 100644 --- a/libraries/base/changelog.md +++ b/libraries/base/changelog.md @@ -24,8 +24,9 @@ * Propagate HasCallStack from `errorCallWithCallStackException` to exception backtraces, fixing a bug in the implementation of [CLC proposal #164](https://github.com/haskell/core-libraries-committee/issues/164). * Introduce `Data.Bounded` module exporting the `Bounded` typeclass ([CLC proposal #208](https://github.com/haskell/core-libraries-committee/issues/208)) -## 4.20.0.0 May 2024 +## 4.20.0.0 *May 2024* * Shipped with GHC 9.10.1 + * Introduce `Data.Enum` module exporting both `Enum` and `Bounded`. Note that the export of `Bounded` will be deprecated in a future release ([CLC proposal #208](https://github.com/haskell/core-libraries-committee/issues/208)) * Deprecate `GHC.Pack` ([#21461](https://gitlab.haskell.org/ghc/ghc/-/issues/21461)) * Export `foldl'` from `Prelude` ([CLC proposal #167](https://github.com/haskell/core-libraries-committee/issues/167)) * The top-level handler for uncaught exceptions now displays the output of `displayException` rather than `show` ([CLC proposal #198](https://github.com/haskell/core-libraries-committee/issues/198)) diff --git a/libraries/base/src/Data/Enum.hs b/libraries/base/src/Data/Enum.hs index cb2a9905c43a..51378f439330 100644 --- a/libraries/base/src/Data/Enum.hs +++ b/libraries/base/src/Data/Enum.hs @@ -13,6 +13,8 @@ -- -- The 'Enum' class. -- +-- @since 4.20.0.0 +-- ----------------------------------------------------------------------------- module Data.Enum -- GitLab