summaryrefslogtreecommitdiff
path: root/libraries/base/changelog.md
diff options
context:
space:
mode:
authorsheaf <sam.derbyshire@gmail.com>2021-12-03 12:50:35 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-12-07 13:32:55 -0500
commit427f9c122f5b1f130b0a342047c87ee0420050c9 (patch)
tree074c2d1449fa7d2706a875840818371ef6a62b52 /libraries/base/changelog.md
parent7eb5606441bf11ba2ebd5f8904918dc82a2a3126 (diff)
downloadhaskell-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.md2
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`.