diff options
author | Li-yao Xia <lysxia@gmail.com> | 2023-01-21 22:41:45 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2023-03-25 00:02:44 -0400 |
commit | 6a73655fd6d22f0fd7e1c24d0d07a573b6bdc042 (patch) | |
tree | 942a8546ad4d2271437ff0421b0ee9afe7a6e7b9 /libraries | |
parent | 509d1f11bf4e7eb4b916ae1c33abc48047b3be0e (diff) | |
download | haskell-6a73655fd6d22f0fd7e1c24d0d07a573b6bdc042.tar.gz |
base: Document GHC versions associated with past base versions in the changelog
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/changelog.md | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md index ed9be1093d..1323e589cb 100644 --- a/libraries/base/changelog.md +++ b/libraries/base/changelog.md @@ -16,10 +16,11 @@ ([CLC proposal #57](https://github.com/haskell/core-libraries-committee/issues/57)) ## 4.18.0.0 *TBA* - + * Shipped with GHC 9.6.1 * `Foreign.C.ConstPtr.ConstrPtr` was added to encode `const`-qualified pointer types in foreign declarations when using `CApiFFI` extension. ([CLC proposal #117](https://github.com/haskell/core-libraries-committee/issues/117)) * Add `forall a. Functor (p a)` superclass for `Bifunctor p` ([CLC proposal #91](https://github.com/haskell/core-libraries-committee/issues/91)) + * Add `forall a. Functor (p a)` superclass for `Bifunctor p`. * Add Functor instances for `(,,,,) a b c d`, `(,,,,,) a b c d e` and `(,,,,,) a b c d e f`. * Exceptions thrown by weak pointer finalizers can now be reported by setting @@ -91,6 +92,8 @@ ## 4.17.0.0 *August 2022* + * Shipped with GHC 9.4.1 + * Add explicitly bidirectional `pattern TypeRep` to `Type.Reflection`. * Add `Generically` and `Generically1` to `GHC.Generics` for deriving generic @@ -200,6 +203,8 @@ ## 4.16.0.0 *Nov 2021* + * Shipped with GHC 9.2.1 + * The unary tuple type, `Solo`, is now exported by `Data.Tuple`. * Add a `Typeable` constraint to `fromStaticPtr` in the class `GHC.StaticPtr.IsStatic`. @@ -260,6 +265,8 @@ ## 4.15.0.0 *Feb 2021* + * Shipped with GHC 9.0.1 + * `openFile` now calls the `open` system call with an `interruptible` FFI call, ensuring that the call can be interrupted with `SIGINT` on POSIX systems. |