diff options
author | Li-yao Xia <lysxia@gmail.com> | 2023-01-21 22:35:30 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2023-02-14 11:29:49 -0500 |
commit | 11de324aae17794c8753a8f7cb50c4140785fe27 (patch) | |
tree | 50c9ac64fee9e5210ffc68bede2b9a33863d7d91 | |
parent | 4771602447c877a4ec6e159e016668569e4a5366 (diff) | |
download | haskell-11de324aae17794c8753a8f7cb50c4140785fe27.tar.gz |
base: Move changelog entry to its place
-rw-r--r-- | libraries/base/changelog.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md index a6a8631df6..e9c0b037ce 100644 --- a/libraries/base/changelog.md +++ b/libraries/base/changelog.md @@ -146,6 +146,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 @@ -223,10 +227,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 `~`. |