unicode-categories 1.4.0 → 1.5.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: 4ffc0f1ebc92ff6e301fdbf2867bd2ebce9e94d31602978b58b7de57d6bc36ec
4
- data.tar.gz: 6d10fa6fe530fe1906a03763da16b9b00377abbe3eb44378a608713600019338
3
+ metadata.gz: 8fe236d152f800642d93712af4cc8e64ae7212ac4e9cd09ac07c6537293f9722
4
+ data.tar.gz: abc493ab8b4ac6cade8a83601062c263d60cc42fb5bcfbea2be08c5a9f133216
5
5
  SHA512:
6
- metadata.gz: 48ae066326e4ac30cb4dd00856263c4924c6207ec7953d708aa4383b6fd6c7542e3ae66bca84b797ce94af5d81f9da75aa536f9fd6bca857d231f814d53cdf79
7
- data.tar.gz: 8bfd735596b3d3ce65378b6ee292f5a82aec2c659c19b17b8e0a2895c2f44ddf6cbd28a80f37d25dffb9d7f3101e34d7acf8b6bbc7cb093240dda17c0b664376
6
+ metadata.gz: b016a9974efef78ca95e5e3c4443d53b4eea918b6f40eef5849c8aa85f5c80a1e9a3a5d38bd79841c05f7ac965be7bff4c190027ac3bba3a0d63b851fc32cea8
7
+ data.tar.gz: 3a13332a1f298328d6adf944ef53ed84b6bee5e15e8fca2297eaa4a0ab93c363eb245fc8ad62d8f68bfa7ee8c954f70b7547c266f0d20b71a088c8c52aa9b12e
@@ -3,15 +3,15 @@ language: ruby
3
3
 
4
4
  rvm:
5
5
  - ruby-head
6
- - 2.6.1
7
- - 2.5.3
8
- - 2.4.5
9
- - 2.3.8
6
+ - 2.6
7
+ - 2.5
8
+ - 2.4
9
+ - 2.3
10
10
  - 2.2
11
11
  - 2.1
12
12
  - 2.0
13
13
  - jruby-head
14
- - jruby-9.2.6.0
14
+ - jruby-9.2.7.0
15
15
 
16
16
  matrix:
17
17
  allow_failures:
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.5.0
4
+
5
+ - Unicode 12.1
6
+
3
7
  ### 1.4.0
4
8
 
5
9
  - Unicode 12
data/Gemfile CHANGED
@@ -4,3 +4,4 @@ gemspec
4
4
 
5
5
  gem 'minitest'
6
6
  gem 'rake'
7
+ gem 'irb'
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: **12.0.0**
5
+ Unicode version: **12.1.0** (May 2019)
6
6
 
7
7
  Supported Rubies: **2.6**, **2.5**, **2.4**
8
8
 
Binary file
@@ -2,8 +2,8 @@
2
2
 
3
3
  module Unicode
4
4
  module Categories
5
- VERSION = "1.4.0"
6
- UNICODE_VERSION = "12.0.0"
5
+ VERSION = "1.5.0"
6
+ UNICODE_VERSION = "12.1.0"
7
7
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
8
8
  INDEX_FILENAME = (DATA_DIRECTORY + "/categories.marshal.gz").freeze
9
9
  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.4.0
4
+ version: 1.5.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: 2019-03-05 00:00:00.000000000 Z
11
+ date: 2019-05-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 12.0.0] Determine which Unicode General Categories a string
13
+ description: "[Unicode 12.1.0] Determine which Unicode General Categories a string
14
14
  belongs to."
15
15
  email:
16
16
  - mail@janlelis.de
@@ -53,7 +53,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  requirements: []
56
- rubygems_version: 3.0.1
56
+ rubygems_version: 3.0.3
57
57
  signing_key:
58
58
  specification_version: 4
59
59
  summary: Determine the Unicode General Categories of a string.