summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHécate Moonlight <hecate+gitlab@glitchbra.in>2022-05-08 23:08:48 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-05-09 16:25:56 -0400
commit158bd65984245a1a563c747e7d5afd1b03d82a1d (patch)
tree70d26ed83f972e12d45ac8ed1a6e4a0f77081bd2
parentc7902078617f711a2313e3c04ef4e52fdb0f2f09 (diff)
downloadhaskell-158bd65984245a1a563c747e7d5afd1b03d82a1d.tar.gz
Correct base's changelog for 4.16.1.0
This commit reaffects the new Ix instances of the foreign integral types from base 4.17 to 4.16.1.0 closes #21529
-rw-r--r--libraries/base/changelog.md13
1 files changed, 9 insertions, 4 deletions
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md
index 84082093eb..1f6c5d4f8d 100644
--- a/libraries/base/changelog.md
+++ b/libraries/base/changelog.md
@@ -40,10 +40,6 @@
* Any Haskell type that wraps a C pointer type has been changed from
`Ptr ()` to `CUIntPtr`. For typical glibc based platforms, the
affected type is `CTimer`.
- * The following Foreign C types now have an instance of `Ix`:
- CChar, CSChar, CUChar, CShort, CUShort, CInt, CUInt, CLong, CULong,
- CPtrdiff, CSize, CWchar, CSigAtomic, CLLong, CULLong, CBool, CIntPtr, CUIntPtr,
- CIntMax, CUIntMax.
* Remove instances of `MonadFail` for the `ST` monad (lazy and strict) as per
the [Core Libraries proposal](https://github.com/haskell/core-libraries-committee/issues/33).
@@ -54,6 +50,15 @@
`Debug.Trace`, per
[CLC #36](https://github.com/haskell/core-libraries-committee/issues/36).
+## 4.16.1.0 *Feb 2022*
+
+ * Shipped with GHC 9.2.2
+
+ * The following Foreign C types now have an instance of `Ix`:
+ CChar, CSChar, CUChar, CShort, CUShort, CInt, CUInt, CLong, CULong,
+ CPtrdiff, CSize, CWchar, CSigAtomic, CLLong, CULLong, CBool, CIntPtr, CUIntPtr,
+ CIntMax, CUIntMax.
+
## 4.16.0.0 *Nov 2021*
* The unary tuple type, `Solo`, is now exported by `Data.Tuple`.