Skip to content

Commit aaf8065

Browse files
committed
Update Unicode version number
1 parent 2b4ea8e commit aaf8065

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Determines the monospace display width of a string in Ruby. Useful for all kinds of terminal-based applications. Implementation based on [EastAsianWidth.txt](https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt) and other data, 100% in Ruby. It does not rely on the OS vendor (like [wcwidth()](https://github.com/janlelis/wcswidth-ruby)) to provide an up-to-date method for measuring string width.
44

5-
Unicode version: **15.1.0** (September 2023)
5+
Unicode version: **16.0.0** (September 2024)
66

77
Supported Rubies: **3.3**, **3.2**, **3.1**, **3.0**
88

lib/unicode/display_width/constants.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module Unicode
44
class DisplayWidth
55
VERSION = "2.5.0"
6-
UNICODE_VERSION = "15.1.0"
6+
UNICODE_VERSION = "16.0.0"
77
DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/")
88
INDEX_FILENAME = DATA_DIRECTORY + "/display_width.marshal.gz"
99
end

0 commit comments

Comments
 (0)