unicode-display_width 1.3.3 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13081ffa0b570a060501c5cb48b0ab25aea9558137a3e0a46f9e4599814735bb
4
- data.tar.gz: 2a7bbe059e2f9e1c246438c1636a53fce5ee591c0ccef612772ca8794bb935c8
3
+ metadata.gz: 840ae42ecadddf7525926243ffd0872a39c6a89c773b8a406750fc59258bf4ad
4
+ data.tar.gz: ca8af98922171d4c28f6eb5ccd2f499efdb9bf80e2813c651b3c18d824a48bb7
5
5
  SHA512:
6
- metadata.gz: 0b3580278a9600b205029990a514a494703756a6e751d9a3b7b5cd8318382fdd0c0c64928e7221a5b53b48d4e334b4f47ac5615f74b87b7b83f84440faae2ff8
7
- data.tar.gz: dfcbc57ebd97c33fa8d6af066c8b0e0156ca104c737e42f7a123ae632f47ccbfc53c70f9f332cc9d3ed23204d66d2f4a02542fe47637a19115be1720720d2506
6
+ metadata.gz: d58ef100d3173ed6a360cde55dd18631443e5e917529fc6b245e29e0f2b06c46f4b71138400e5e12cb9ea33923f238ed28b02fb437c13eb8a8b698f5121a11dd
7
+ data.tar.gz: 0c6f8be05c7a23a21208c3a3f395626aca12a558d23c64fdaaaadc2ad474513a4f4954af77a5f903b7cf2039b6971e6188ef8e613c9c89e99df90fac5fb1d6eb
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.4.0
4
+
5
+ - Unicode 11
6
+
3
7
  ## 1.3.3
4
8
 
5
9
  - Replace Gem::Util.gunzip with direct zlib implementation
@@ -1,6 +1,6 @@
1
1
  The MIT LICENSE
2
2
 
3
- Copyright (c) 2011, 2015-2017 Jan Lelis
3
+ Copyright (c) 2011, 2015-2018 Jan Lelis
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Determines the monospace display width of a string in Ruby. Implementation based on [EastAsianWidth.txt](http://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt) and other data, 100% in Ruby. Other than [wcwidth()](https://github.com/janlelis/wcswidth-ruby), which fulfills a similar purpose, it does not rely on the OS vendor to provide an up-to-date method for measuring string width.
4
4
 
5
- Unicode version: **10.0.0**
5
+ Unicode version: **11.0.0**
6
6
 
7
7
  Supported Rubies: **2.5**, **2.4**, **2.3**
8
8
 
@@ -118,7 +118,7 @@ See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related
118
118
 
119
119
  ## Copyright & Info
120
120
 
121
- - Copyright (c) 2011, 2015-2017 Jan Lelis, http://janlelis.com, released under the MIT
121
+ - Copyright (c) 2011, 2015-2018 Jan Lelis, http://janlelis.com, released under the MIT
122
122
  license
123
123
  - Early versions based on runpaint's unicode-data interface: Copyright (c) 2009 Run Paint Run Run
124
124
  - Unicode data: http://www.unicode.org/copyright.html#Exhibit1
@@ -1,7 +1,7 @@
1
1
  module Unicode
2
2
  module DisplayWidth
3
- VERSION = '1.3.3'
4
- UNICODE_VERSION = "10.0.0".freeze
3
+ VERSION = '1.4.0'
4
+ UNICODE_VERSION = "11.0.0".freeze
5
5
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + '/../../../data/').freeze
6
6
  INDEX_FILENAME = (DATA_DIRECTORY + '/display_width.marshal.gz').freeze
7
7
  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: 1.3.3
4
+ version: 1.4.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: 2018-05-28 00:00:00.000000000 Z
11
+ date: 2018-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.4'
41
- description: "[Unicode 10.0.0] Determines the monospace display width of a string
41
+ description: "[Unicode 11.0.0] Determines the monospace display width of a string
42
42
  using EastAsianWidth.txt, Unicode general category, and other data."
43
43
  email: mail@janlelis.de
44
44
  executables: []