diff options
author | sheaf <sam.derbyshire@gmail.com> | 2021-12-03 12:50:35 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-12-07 13:32:55 -0500 |
commit | 427f9c122f5b1f130b0a342047c87ee0420050c9 (patch) | |
tree | 074c2d1449fa7d2706a875840818371ef6a62b52 /libraries/base/changelog.md | |
parent | 7eb5606441bf11ba2ebd5f8904918dc82a2a3126 (diff) | |
download | haskell-427f9c122f5b1f130b0a342047c87ee0420050c9.tar.gz |
Re-export GHC.Types from GHC.Exts
Several times in the past, it has happened that things from GHC.Types
were not re-exported from GHC.Exts, forcing users to import either
GHC.Types or GHC.Prim, which are subject to internal change without
notice.
We now re-export GHC.Types from GHC.Exts, which should avoid this
happening again in the future.
In particular, we now re-export `Multiplicity` and `MultMul`,
which we didn't before.
Fixes #20695
Diffstat (limited to 'libraries/base/changelog.md')
-rw-r--r-- | libraries/base/changelog.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md index 7ddc112af4..52f6a56d0c 100644 --- a/libraries/base/changelog.md +++ b/libraries/base/changelog.md @@ -27,6 +27,8 @@ These new operators have the same fixity as the originals. + * `GHC.Exts` now re-exports `Multiplicity` and `MultMul`. + ## 4.16.0.0 *Nov 2021* * The unary tuple type, `Solo`, is now exported by `Data.Tuple`. |