icu4x 0.10.0-aarch64-linux → 0.11.1-aarch64-linux

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: 24bf478b25c54b01341a45b7941cd65a15e87f70b50973d2f85739a89cbb546c
4
- data.tar.gz: e7b72eed598b92fcc461f9f15725ed72550075832528d054f2eb4e3ce89a41ac
3
+ metadata.gz: 1694766ee46ce2d18aa6488dee6a8148efbc390ddeb3c2051c01ffe3498549b2
4
+ data.tar.gz: 20a211b10feaf275ce04feb1121e4d36df811f8033cefe9fc97ec606e0b26311
5
5
  SHA512:
6
- metadata.gz: 64ec6939951a9bea0462e2afc7bc3b1723a261c4dfb840f996062786434032f6d97b054727d3c462526cd2d3737de4480530c734c70aa54b173b3d8b514ca369
7
- data.tar.gz: 5059082988fc87b109a9fa2f0047f69d377a1a1d654bbd016d20fce44f10f88d7f3abc2af5df28aabbee7274109b074dc7c56e9dcf5ed6739ecfabcd0d073e87
6
+ metadata.gz: 93b6a60607005b70606b2a265b3201f69bb0e3b2062c6130ca400499e57c12315a34d7574d6c097a300aa76d8c2bf748177d9a4f5806320e283bb4d708525786
7
+ data.tar.gz: e911146b90452b47d18eb41db94a28de29752421bf58e684ce8a8f41e4ed514cfdd95a76e64866cccddc1dca8fc1705cebf8f38d1ef58feadd04cf1b839cfc1e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.11.1] - 2026-05-18
4
+
5
+ ### Fixed
6
+
7
+ - Relax `bigdecimal` version requirement from `~> 4.0` to `>= 3.1, < 5` to allow coexistence with gems requiring bigdecimal 3.x (#159)
8
+
9
+ ## [0.11.0] - 2026-05-18
10
+
11
+ ### Fixed
12
+
13
+ - Fix `time_style: :long` and `time_style: :full` to include timezone information (#156)
14
+ - Fix `time_style: :short` to omit seconds (#155)
15
+
16
+ ### Changed
17
+
18
+ - Update minimum Ruby version requirement to 3.3
19
+
3
20
  ## [0.10.0] - 2026-05-08
4
21
 
5
22
  ### Added
data/README.md CHANGED
@@ -24,7 +24,7 @@ No locale data is bundled with the gem. Users generate only the data they need,
24
24
 
25
25
  ## Requirements
26
26
 
27
- - Ruby 3.2+
27
+ - Ruby 3.3+
28
28
  - Rust toolchain (only required when building from source; prebuilt binary gems are available for major platforms)
29
29
 
30
30
  ## Setup
Binary file
Binary file
Binary file
data/lib/icu4x/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ICU4X
4
- VERSION = "0.10.0"
4
+ VERSION = "0.11.1"
5
5
  public_constant :VERSION
6
6
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: icu4x
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - OZAWA Sakuro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-05-08 00:00:00.000000000 Z
11
+ date: 2026-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '3.1'
20
+ - - "<"
18
21
  - !ruby/object:Gem::Version
19
- version: '4.0'
22
+ version: '5'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '3.1'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '4.0'
32
+ version: '5'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: dry-configurable
29
35
  requirement: !ruby/object:Gem::Requirement