unicode-display_width 3.1.5 → 3.2.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: 7c14109c1e795b4a3704c22d98253b3283a630d9fe3d1d0c04710d718673ca5b
4
- data.tar.gz: 744619a90fb70a43988c0635ea5f237eee5c3ff3de2d879b55378d2ea3b1ebad
3
+ metadata.gz: b74011f05c3a5888834037aa487904d2515cddd224c9e704a00a797b84cbede0
4
+ data.tar.gz: 8e86c213031df728e95b7b2341a77b568b1876baec2d750e6832e108dfede578
5
5
  SHA512:
6
- metadata.gz: 2c93aaaec7313fa62ccd8db2ee4de5fab5a757c5cea5e211305da0b55c80ba4d8523db42f100a2d1957d6c3b5a072ff49ecbcce618a02c313d62123ca324492d
7
- data.tar.gz: d9c8e89ec9c5602a22205d5c17fe761ae2570b86566ebc6f840706a6ee11976dffb8c2dcf04549abfef0d8d6723297b8ef74249c3f95b862622f198f9cba6564
6
+ metadata.gz: 3cf9ec0dce0f94bbfaa44ffe75bc1caf51b74598437226dba6a253419a5397bd678bf1a7e9587603de2b9923970471b35d89bf7b218a891f46b0c396849fcc4b
7
+ data.tar.gz: 5e5cee4b27b34d5c1b9cf74f4764b3afcf1c402230a268a9b348b84e47d225253acee2680ccb9778fedf2049944f61fbeb758bc7150f8e60c23c122308cd2540
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 3.2.0
4
+
5
+ - Unicode 17.0
6
+
3
7
  ## 3.1.5
4
8
 
5
9
  - Cache Emoji support level for performance reasons #30, patch by @Earlopain:
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Determines the monospace display width of a string in Ruby, which is useful for all kinds of terminal-based applications. The implementation is based on [EastAsianWidth.txt](https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt), the [Emoji specfication](https://www.unicode.org/reports/tr51/) and other data, 100% in Ruby. It does not rely on the OS vendor ([wcwidth](https://github.com/janlelis/wcswidth-ruby)) to provide an up-to-date method for measuring string width in terminals.
4
4
 
5
- Unicode version: **16.0.0** (September 2024)
5
+ Unicode version: **17.0.0** (September 2025)
6
6
 
7
7
  ## Gem Version 3 — Improved Emoji Support
8
8
 
@@ -188,7 +188,7 @@ See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related
188
188
 
189
189
  ## Copyright & Info
190
190
 
191
- - Copyright (c) 2011, 2015-2024 Jan Lelis, https://janlelis.com, released under the MIT
191
+ - Copyright (c) 2011, 2015-2025 Jan Lelis, https://janlelis.com, released under the MIT
192
192
  license
193
193
  - Early versions based on runpaint's unicode-data interface: Copyright (c) 2009 Run Paint Run Run
194
194
  - Unicode data: https://www.unicode.org/copyright.html#Exhibit1
Binary file
@@ -2,8 +2,8 @@
2
2
 
3
3
  module Unicode
4
4
  class DisplayWidth
5
- VERSION = "3.1.5"
6
- UNICODE_VERSION = "16.0.0"
5
+ VERSION = "3.2.0"
6
+ UNICODE_VERSION = "17.0.0"
7
7
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/")
8
8
  INDEX_FILENAME = DATA_DIRECTORY + "/display_width.marshal.gz"
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-display_width
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.5
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-15 00:00:00.000000000 Z
11
+ date: 2025-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unicode-emoji
@@ -16,20 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '4.0'
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 4.0.4
19
+ version: '4.1'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
24
  - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: '4.0'
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: 4.0.4
26
+ version: '4.1'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: rspec
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -58,7 +52,7 @@ dependencies:
58
52
  - - "~>"
59
53
  - !ruby/object:Gem::Version
60
54
  version: '13.0'
61
- description: "[Unicode 16.0.0] Determines the monospace display width of a string
55
+ description: "[Unicode 17.0.0] Determines the monospace display width of a string
62
56
  using EastAsianWidth.txt, Unicode general category, Emoji specification, and other
63
57
  data."
64
58
  email: