Skip to content

Commit

Permalink
Update Unicode version number
Browse files Browse the repository at this point in the history
  • Loading branch information
janlelis committed Sep 13, 2024
1 parent 2b4ea8e commit aaf8065
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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.

Unicode version: **15.1.0** (September 2023)
Unicode version: **16.0.0** (September 2024)

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

Expand Down
2 changes: 1 addition & 1 deletion lib/unicode/display_width/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Unicode
class DisplayWidth
VERSION = "2.5.0"
UNICODE_VERSION = "15.1.0"
UNICODE_VERSION = "16.0.0"
DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/")
INDEX_FILENAME = DATA_DIRECTORY + "/display_width.marshal.gz"
end
Expand Down

0 comments on commit aaf8065

Please sign in to comment.