
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 rel-eng: Fix mktemp usage in recompress-all We need a temporary directory, not a file. (cherry picked from commit 914eb49a0637ef12c3f7db71c9da93c05389497b) - - - - - 88d3b9e6 by Ben Gamari at 2025-04-18T17:02:33-04:00 Finalize release notes - - - - - 3 changed files: - .gitlab/rel_eng/recompress-all - docs/users_guide/9.10.2-notes.rst - docs/users_guide/release-notes.rst Changes: ===================================== .gitlab/rel_eng/recompress-all ===================================== @@ -21,7 +21,7 @@ usage : %.zip : %.tar.xz echo "[tarxz->zip] $< to $@..." - tmp="$$(mktemp tmp.XXX)" && \ + tmp="$$(mktemp -d tmp.XXX)" && \ tar -C "$$tmp" -xf $< && \ cd "$$tmp" && \ zip -9 -r ../$@ * && \ ===================================== docs/users_guide/9.10.2-notes.rst ===================================== @@ -1,4 +1,4 @@ -.. _release-9-10-1: +.. _release-9-10-2: Version 9.10.2 ============== @@ -7,10 +7,6 @@ following sections. See the `migration guide https://gitlab.haskell.org/ghc/ghc/-/wikis/migration/9.10`_ on the GHC Wiki for specific guidance on migrating programs to this release. -Language -~~~~~~~~ - - Compiler ~~~~~~~~ @@ -183,16 +179,6 @@ Build system and packaging - Fixed a bug where building ghc from source using ghc-9.8.4 failed with an error mentioning ``ghc_unique_counter64``. (:ghc-ticket:`25576`) -``base`` library -~~~~~~~~~~~~~~~~ - - - - -``ghc-prim`` library -~~~~~~~~~~~~~~~~~~~~ - - ``ghc`` library ~~~~~~~~~~~~~~~ @@ -210,10 +196,6 @@ Build system and packaging * The library is now versioned according to the ghc version it shipped with. -``template-haskell`` library -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - Included libraries ~~~~~~~~~~~~~~~~~~ ===================================== docs/users_guide/release-notes.rst ===================================== @@ -5,3 +5,4 @@ Release notes :maxdepth: 1 9.10.1-notes + 9.10.2-notes View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/0cdf476d3878ede6f5cf26a2226e879... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/0cdf476d3878ede6f5cf26a2226e879... You're receiving this email because of your account on gitlab.haskell.org.