Ben Gamari pushed to branch ghc-9.10 at Glasgow Haskell Compiler / GHC
Commits:
-
429b1e0d
by Ben Gamari at 2025-04-18T12:38:01-04:00
-
88d3b9e6
by Ben Gamari at 2025-04-18T17:02:33-04:00
3 changed files:
Changes:
| ... | ... | @@ -21,7 +21,7 @@ usage : |
| 21 | 21 | |
| 22 | 22 | %.zip : %.tar.xz
|
| 23 | 23 | echo "[tarxz->zip] $< to $@..."
|
| 24 | - tmp="$$(mktemp tmp.XXX)" && \
|
|
| 24 | + tmp="$$(mktemp -d tmp.XXX)" && \
|
|
| 25 | 25 | tar -C "$$tmp" -xf $< && \
|
| 26 | 26 | cd "$$tmp" && \
|
| 27 | 27 | zip -9 -r ../$@ * && \
|
| 1 | -.. _release-9-10-1:
|
|
| 1 | +.. _release-9-10-2:
|
|
| 2 | 2 | |
| 3 | 3 | Version 9.10.2
|
| 4 | 4 | ==============
|
| ... | ... | @@ -7,10 +7,6 @@ following sections. See the `migration guide |
| 7 | 7 | <https://gitlab.haskell.org/ghc/ghc/-/wikis/migration/9.10>`_ on the GHC Wiki
|
| 8 | 8 | for specific guidance on migrating programs to this release.
|
| 9 | 9 | |
| 10 | -Language
|
|
| 11 | -~~~~~~~~
|
|
| 12 | - |
|
| 13 | - |
|
| 14 | 10 | |
| 15 | 11 | Compiler
|
| 16 | 12 | ~~~~~~~~
|
| ... | ... | @@ -183,16 +179,6 @@ Build system and packaging |
| 183 | 179 | |
| 184 | 180 | - Fixed a bug where building ghc from source using ghc-9.8.4 failed with an error mentioning ``ghc_unique_counter64``. (:ghc-ticket:`25576`)
|
| 185 | 181 | |
| 186 | -``base`` library
|
|
| 187 | -~~~~~~~~~~~~~~~~
|
|
| 188 | - |
|
| 189 | - |
|
| 190 | - |
|
| 191 | - |
|
| 192 | -``ghc-prim`` library
|
|
| 193 | -~~~~~~~~~~~~~~~~~~~~
|
|
| 194 | - |
|
| 195 | - |
|
| 196 | 182 | ``ghc`` library
|
| 197 | 183 | ~~~~~~~~~~~~~~~
|
| 198 | 184 | |
| ... | ... | @@ -210,10 +196,6 @@ Build system and packaging |
| 210 | 196 | * The library is now versioned according to the ghc version it shipped with.
|
| 211 | 197 | |
| 212 | 198 | |
| 213 | -``template-haskell`` library
|
|
| 214 | -~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
| 215 | - |
|
| 216 | - |
|
| 217 | 199 | Included libraries
|
| 218 | 200 | ~~~~~~~~~~~~~~~~~~
|
| 219 | 201 |
| ... | ... | @@ -5,3 +5,4 @@ Release notes |
| 5 | 5 | :maxdepth: 1
|
| 6 | 6 | |
| 7 | 7 | 9.10.1-notes
|
| 8 | + 9.10.2-notes |