diff options
-rw-r--r-- | libraries/base/changelog.md | 13 |
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`. |