icu4x 0.9.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0c0cb2adcc5d5af24a00272def5a66e3b03a928b0cb522a0d7c5ee6b50eacdb5
4
- data.tar.gz: 2f44d6cddb74e64fc922c6269d32b060ed8b03e751969d7bd0e1c87d584f0a59
3
+ metadata.gz: d20c68d78ce5ac2f944e9f7d1d5439ddcd7cfbf38de6545a3471114d2930be63
4
+ data.tar.gz: e164bb4226ed47018d14ea9642b95bf5b0dc3900e45d0097077a9ad896288654
5
5
  SHA512:
6
- metadata.gz: 15b7967a5eecc044bbd3d3c1f3dfc36c08fd655cf9e83164c418239aa24a6cad7b622ac25d923cbc1d8f453cb8996be8ce5a1e38e3114f511a5f4ef1ebae2950
7
- data.tar.gz: 68e9db100a5255557d6bf1c298f990dae44f8743ce0829ecc050a56491dd9ba27ac9d42aff3df583f1111b919c9af8395cca75f1c3eccc98ce6789502e826f56
6
+ metadata.gz: a423d9b426a240c82e5d8cd6452b473707093ff5db8c9d28f71ef3607a97178811f3dc3087428ad5e5418cc180a5b0104bb7b59ce4bc058458d2943e048d69f4
7
+ data.tar.gz: f718d99ee81feb48d054ffa2d2943eefb0985af3e31f3e746084b52964143dfc4bddb88fb8044b4d8fb4a5082aeb0ef9ff53e18188da446b7142ee7a778ee727
data/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.11.0] - 2026-05-18
4
+
5
+ ### Fixed
6
+
7
+ - Fix `time_style: :long` and `time_style: :full` to include timezone information (#156)
8
+ - Fix `time_style: :short` to omit seconds (#155)
9
+
10
+ ### Changed
11
+
12
+ - Update minimum Ruby version requirement to 3.3
13
+
14
+ ## [0.10.0] - 2026-05-08
15
+
16
+ ### Added
17
+
18
+ - `era:` option for `ICU4X::DateTimeFormat` to control era display (`:auto`, `:full`, `:with_era`, `:never`) (#144)
19
+ - Locale variant APIs: `ICU4X::Locale#variants`, `#add_variant!`, `#add_variant`, `#remove_variant!`, `#remove_variant` (#143)
20
+
21
+ ### Fixed
22
+
23
+ - `hour12: true/false` now maps to `Clock12`/`Clock24` for locale-aware hour cycle preference, not fixed `H12`/`H23` (#145)
24
+ - Declare `bigdecimal` as an explicit runtime dependency (#149)
25
+ - Remove deprecated `AnyCalendarKind::JapaneseExtended` (#141)
26
+
27
+ ### Changed
28
+
29
+ - Update ICU4X crates from 2.1 to 2.2 (CLDR 48.2, TZDB 2026a) (#138)
30
+
3
31
  ## [0.9.0] - 2026-02-01
4
32
 
5
33
  ### Added