diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md index c29a8f9cd78927c2c033ea6af2b57033fb3bbf5e..f0d18f1a1d1cc6e7af844fb5ca6b365e841964b6 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 cb2a9905c43a79fdc2c822f612ae6f82bdbed7fd..51378f4393302f038f9ff855409b54cec312f7c4 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