diff options
author | Ben Gamari <ben@smart-cactus.org> | 2023-02-14 09:12:48 -0500 |
---|---|---|
committer | Ben Gamari <ben@well-typed.com> | 2023-02-15 19:48:04 +0000 |
commit | 239c0eb2e45cc87d2d2947738d3b938b6c5927d0 (patch) | |
tree | fd2463bb3facc34f74b87e16e9f7e514cee61657 | |
parent | 9ca51f9e84abc41ba590203d8bc8df8d6af86db2 (diff) | |
download | haskell-239c0eb2e45cc87d2d2947738d3b938b6c5927d0.tar.gz |
base: Note move of GHC.Stack.CCS.whereFrom to GHC.InfoProv in changelogwip/T22883
Fixes #22883.
-rw-r--r-- | libraries/base/changelog.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md index e9c0b037ce..67535438d9 100644 --- a/libraries/base/changelog.md +++ b/libraries/base/changelog.md @@ -6,6 +6,7 @@ types significantly. ## 4.18.0.0 *TBA* + * `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)) @@ -68,6 +69,13 @@ * Add `Data.Typeable.heqT`, a kind-heterogeneous version of `Data.Typeable.eqT` ([CLC proposal #99](https://github.com/haskell/core-libraries-committee/issues/99)) + * Various declarations GHC's new info-table provenance feature have been + moved from `GHC.Stack.CCS` to a new `GHC.InfoProv` module: + * The `InfoProv`, along its `ipName`, `ipDesc`, `ipTyDesc`, `ipLabel`, + `ipMod`, and `ipLoc` fields, have been moved. + * `InfoProv` now has additional `ipSrcFile` and `ipSrcSpan` fields. `ipLoc` + is now a function computed from these fields. + * The `whereFrom` function has been moved ## 4.17.0.0 *August 2022* |