summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi-yao Xia <lysxia@gmail.com>2023-01-21 22:35:30 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2023-02-20 09:13:24 +0000
commitb9b174fcd8e0461da1ad3b667eda9e351b31cecd (patch)
tree760df96fea49477a397a4d9370dcfc0d2d646fd5
parent2ad167bf835b820f680bc31a69bd2c14357eca62 (diff)
downloadhaskell-b9b174fcd8e0461da1ad3b667eda9e351b31cecd.tar.gz
base: Move changelog entry to its place
(cherry picked from commit 11de324aae17794c8753a8f7cb50c4140785fe27)
-rw-r--r--libraries/base/changelog.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md
index b005d03617..85011586a5 100644
--- a/libraries/base/changelog.md
+++ b/libraries/base/changelog.md
@@ -141,6 +141,10 @@
`Word64#` and `Int64#`, respectively. Previously on 32-bit platforms these
were rather represented by `Word#` and `Int#`. See GHC #11953.
+ * Add `GHC.TypeError` module to contain functionality related to custom type
+ errors. `TypeError` is re-exported from `GHC.TypeLits` for backwards
+ compatibility.
+
## 4.16.3.0 *May 2022*
* Shipped with GHC 9.2.4
@@ -218,10 +222,6 @@
* `fromInteger :: Integer -> Float/Double` now consistently round to the
nearest value, with ties to even.
- * Add `GHC.TypeError` module to contain functionality related to custom type
- errors. `TypeError` is re-exported from `GHC.TypeLits` for backwards
- compatibility.
-
* Comparison constraints in `Data.Type.Ord` (e.g. `<=`) now use the new
`GHC.TypeError.Assert` type family instead of type equality with `~`.