unicode-categories 1.1.2 → 1.2.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
  SHA1:
3
- metadata.gz: 5b4cf92fd3cc3c7f6c0b22e909905aabb2a22623
4
- data.tar.gz: 7ace53ad70bb860bdecb38d0039a28fbf9f9bfce
3
+ metadata.gz: 73b2391085ed1fae61cdf387d7f2521de2d6c073
4
+ data.tar.gz: d2c47f5a3ef1c6e9d83b7ae3d47a9e0ce9f3f748
5
5
  SHA512:
6
- metadata.gz: f22841e9216623d7ba4be4d4602b9533e1d514074b11cbb1bc65ce301665fdf1f16e34baa88456188d80f5059637f8e31d55bc4e939fe27990206cccd1635b29
7
- data.tar.gz: 9a30fb3ad57175eecc7b10522dd5150afab1b80ac39df24639a711ba122884284a2bd0cd627091e1ddd477742524bf157681f03402ea8db8f323fa30cf54e252
6
+ metadata.gz: ea80f737455a693d1910071e0cd1c329725ec16f38bcf532f7ebd787eb8c5d2454762b8ea0ef1494de7625086775ea5d4d610cf6def44e8be5ed6ede895fac9b
7
+ data.tar.gz: 9ab60811dbc754634f57bf243b73f8b49188c5c451ad2dc554bce8f7237508cdaf0a96cdf7840d389a75e49badb5b61a50b610efc37c6097725efd26ad7ee231
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.2.0
4
+
5
+ - Unicode 10
6
+
3
7
  ### 1.1.2
4
8
 
5
9
  - Fix bug that would wrongly assign unassigned codepoints to a category (but larger index size...)
@@ -14,5 +18,5 @@
14
18
 
15
19
  ### 1.0.0
16
20
 
17
- - Iniital release
21
+ - Initial release
18
22
 
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Returns which [General Categories](https://en.wikipedia.org/wiki/Unicode_character_property#General_Category) a Unicode string contains.
4
4
 
5
- Unicode version: **9.0.0**
5
+ Unicode version: **10.0.0**
6
6
 
7
7
  Supported Rubies: **2.4**, **2.3**, **2.2**, **2.1**
8
8
 
Binary file
@@ -1,7 +1,7 @@
1
1
  module Unicode
2
2
  module Categories
3
- VERSION = "1.1.2".freeze
4
- UNICODE_VERSION = "9.0.0".freeze
3
+ VERSION = "1.2.0".freeze
4
+ UNICODE_VERSION = "10.0.0".freeze
5
5
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + '/../../../data/').freeze
6
6
  INDEX_FILENAME = (DATA_DIRECTORY + '/categories.marshal.gz').freeze
7
7
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-categories
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.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: 2017-03-09 00:00:00.000000000 Z
11
+ date: 2017-06-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 9.0.0] Determine which Unicode General Categories a string
13
+ description: "[Unicode 10.0.0] Determine which Unicode General Categories a string
14
14
  belongs to."
15
15
  email:
16
16
  - mail@janlelis.de
@@ -54,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
54
54
  version: '0'
55
55
  requirements: []
56
56
  rubyforge_project:
57
- rubygems_version: 2.6.8
57
+ rubygems_version: 2.6.11
58
58
  signing_key:
59
59
  specification_version: 4
60
60
  summary: Determine the Unicode General Categories of a string.