icu4x 0.6.2-x86_64-linux → 0.7.0-x86_64-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: b123c77858644667b930727bea2c8a1b82c9236c9d729e8418652277b97a7d66
4
- data.tar.gz: 94c16c5d6badb48814f29c2c02b80430fa2d1e46ccaf7ab45565e0d7913744fd
3
+ metadata.gz: 2dd294322ce004b46d33fe77fa2984a0f71d64edf35a29d50ba86788f31cf008
4
+ data.tar.gz: 0bdc9a80aeee2afa01825e6f448736d7f7bcfd61bead354cd6038888d4d40f3d
5
5
  SHA512:
6
- metadata.gz: ef7b1378736ec9ddcb8a4e8f2c54680fa0bab6ed92188b4b096d88c9279d66679ba177b4e321ba4c6a3ad238849a98f91890956541603fa7d22e731a4ad02ded
7
- data.tar.gz: f2c1fd92cd0406c5d4bbc25b03bc84a7baa05a05cab86e2cfecc6bda0965053b66382bbe43e407ad41f6f4a33bb2bb07a38b2450bea589809288576721a880bc
6
+ metadata.gz: 331cfa090d5f2a206f150d47c4ba9ffe934f1d97e389f21fd6119cebd89b1752c5148f51443ba65648f36819b3c8d8ebe2343af827c7a5825031aa083e3e679e
7
+ data.tar.gz: 218357be2d4ab25ab77df740ba5fc17bdfbb9c5b9dc9bb03dc79e2f31ea1db6fcdc3ccd005d0408d7944e76f0ac8b94d8d8b51d5c9ad35b0943aa7b0491c1b3e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.7.0] - 2026-01-09
4
+
5
+ ### Added
6
+
7
+ - `DateTimeFormat#format` now accepts any object responding to `#to_time` (e.g., `Date`, `DateTime`)
8
+
3
9
  ## [0.6.2] - 2026-01-02
4
10
 
5
11
  ### Fixed
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.6.2"
4
+ VERSION = "0.7.0"
5
5
  public_constant :VERSION
6
6
  end
@@ -441,7 +441,7 @@
441
441
  #
442
442
  # # Formats a time value according to the configured options.
443
443
  # #
444
- # # @param time [Time] the time to format
444
+ # # @param time [Time, #to_time] the time to format (or any object responding to #to_time)
445
445
  # # @return [String] the formatted date/time string
446
446
  # #
447
447
  # def format(time); end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: icu4x
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.7.0
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - OZAWA Sakuro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-02 00:00:00.000000000 Z
11
+ date: 2026-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-configurable
@@ -24,7 +24,10 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.3'
27
- description: icu4x
27
+ description: |-
28
+ ICU4X provides Ruby bindings for the ICU4X library, offering Unicode
29
+ internationalization support including locale handling, number formatting,
30
+ date/time formatting, collation, segmentation, and more.
28
31
  email:
29
32
  - 10973+sakuro@users.noreply.github.com
30
33
  executables: []
@@ -72,5 +75,5 @@ requirements: []
72
75
  rubygems_version: 3.5.23
73
76
  signing_key:
74
77
  specification_version: 4
75
- summary: icu4x
78
+ summary: Ruby bindings for ICU4X Unicode internationalization library
76
79
  test_files: []