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 +4 -4
- data/CHANGELOG.md +28 -0
- data/Cargo.lock +118 -139
- data/README.md +2 -2
- data/ext/icu4x/Cargo.toml +9 -9
- data/ext/icu4x/src/data_generator.rs +1 -1
- data/ext/icu4x/src/datetime_format.rs +145 -98
- data/ext/icu4x/src/display_names.rs +3 -3
- data/ext/icu4x/src/locale.rs +57 -0
- data/ext/icu4x/src/number_format.rs +3 -7
- data/ext/icu4x/src/relative_time_format.rs +2 -3
- data/ext/icu4x_macros/Cargo.toml +1 -1
- data/lib/icu4x/version.rb +1 -1
- data/lib/icu4x.rb +28 -17
- data/sig/icu4x.rbs +3 -0
- metadata +18 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d20c68d78ce5ac2f944e9f7d1d5439ddcd7cfbf38de6545a3471114d2930be63
|
|
4
|
+
data.tar.gz: e164bb4226ed47018d14ea9642b95bf5b0dc3900e45d0097077a9ad896288654
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|