diff options
author | Pierre Le Marre <dev@wismill.eu> | 2023-03-24 09:53:56 +0100 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2023-04-06 10:16:29 +0000 |
commit | 0c990e13c36b7be7d3bd3af050ad49182a028f21 (patch) | |
tree | fe64d6299ffe8abfad52d3e3d937e5c8375837ca /libraries | |
parent | 04b80850c535fa8c11f435711577296a99499105 (diff) | |
download | haskell-0c990e13c36b7be7d3bd3af050ad49182a028f21.tar.gz |
Add release note for GHC.Unicode refactor in base-4.18.
Also merge CLC proposal 130 in base-4.19 with CLC proposal 59 in
base-4.18 and add proper release date.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/changelog.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md index fcfaed25ec..d25888e7fb 100644 --- a/libraries/base/changelog.md +++ b/libraries/base/changelog.md @@ -7,8 +7,6 @@ * Add `Data.List.!?` ([CLC proposal #110](https://github.com/haskell/core-libraries-committee/issues/110)) * `maximumBy`/`minimumBy` are now marked as `INLINE` improving performance for unpackable types significantly. - * Refactor `generalCategory` to stop very large literal string being inlined to call-sites. - ([CLC proposal #130](https://github.com/haskell/core-libraries-committee/issues/130)) * Add INLINABLE pragmas to `generic*` functions in Data.OldList ([CLC proposal #129](https://github.com/haskell/core-libraries-committee/issues/130)) * Export `getSolo` from `Data.Tuple`. ([CLC proposal #113](https://github.com/haskell/core-libraries-committee/issues/113)) @@ -23,7 +21,7 @@ ([CLC proposal #149](https://github.com/haskell/core-libraries-committee/issues/149)) * Make `($)` representation polymorphic ([CLC proposal #132](https://github.com/haskell/core-libraries-committee/issues/132)) -## 4.18.0.0 *TBA* +## 4.18.0.0 *March 2023* * 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)) @@ -61,6 +59,9 @@ ([CLC proposal #50](https://github.com/haskell/core-libraries-committee/issues/50), [the migration guide](https://github.com/haskell/core-libraries-committee/blob/main/guides/export-lifta2-prelude.md)) + * Switch to a pure Haskell implementation of `GHC.Unicode` + ([CLC proposals #59](https://github.com/haskell/core-libraries-committee/issues/59) + and [#130](https://github.com/haskell/core-libraries-committee/issues/130)) * Update to [Unicode 15.0.0](https://www.unicode.org/versions/Unicode15.0.0/). * Add standard Unicode case predicates `isUpperCase` and `isLowerCase` to `GHC.Unicode` and `Data.Char`. These predicates use the standard Unicode |