From 33b5e7511785d5331efaead5d46a2f45547e780c Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Fri, 10 Jan 2025 09:51:30 -0600 Subject: [PATCH] icu: Bump default version from 74 to 76 --- doc/release-notes/rl-2505.section.md | 2 ++ pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/release-notes/rl-2505.section.md b/doc/release-notes/rl-2505.section.md index 9c3a264db53e..ba25fef1bfde 100644 --- a/doc/release-notes/rl-2505.section.md +++ b/doc/release-notes/rl-2505.section.md @@ -12,6 +12,8 @@ It should generally be replaced with `rustPlatform.fetchCargoVendor`, but `rustPlatform.importCargoLock` may also be appropriate in some circumstances. `rustPlatform.buildRustPackage` users must set `useFetchCargoVendor` to `true` and regenerate the `cargoHash`. +- Default ICU version updated from 74 to 76 + ### Titanium removed {#sec-nixpkgs-release-25.05-incompatibilities-titanium-removed} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 78c9dc08dfdd..4bb983495e3a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9269,7 +9269,7 @@ with pkgs; # # `icuReal` is provided in case the upstream icu package is needed on Darwin instead of the fork. # Note that the versioned icu packages always correspond to the upstream versions. - icuReal = icu74; + icuReal = icu76; icu = if stdenv.hostPlatform.isDarwin then darwin.ICU else icuReal; idasen = with python3Packages; toPythonApplication idasen;