unicode-types 1.4.0 → 1.5.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: e0ebc8bd9d3c9fdc05216e4e238d2b9fce3e32da022e8fb311d3b905f3a9b7ee
4
- data.tar.gz: 96f5a3287c61604cc4e06737d82ace0a332a297a19a874295c0aa86bba7e6303
3
+ metadata.gz: eef962f31ae21cf6f126eb2251b88372ae63cbac0d2bc38fa96c553b8ce93ee9
4
+ data.tar.gz: '084afc9093f727032ae987ce146f64f4bf2cfdfdf810c5c0139d7ea73fc5a2b2'
5
5
  SHA512:
6
- metadata.gz: 062c019d388efa5dc62ac5c2b032bf2d3b237d864a5256d03e1a8e1ce25762f4bc21cba1242f94b6e60695b60b5e1759ae846c9227db9a87681f1f2f24e935da
7
- data.tar.gz: a0bd61885efead199b81294e16acb05818c0c21d997a4c0f40eb0e788c0d3488e61e0c16f5dbc37bf2351583aea87824467f973d7739a695eab8e89c45042688
6
+ metadata.gz: f13836be5e4e824db20cbcd5a96635eddab8577c0e3c5ab71a8b61f62e2369645cc72300acf521a3294d49ebe316f6020de49d004b58cbd995400ffaf979da4b
7
+ data.tar.gz: ac6313ce3bcdb036c08b1acea42c9f3a42d409e177f5cfd748d310e4aeffc830f4f9f7c92f91efc347619c0b194ca32624c64412ad97ab380920c9f6605806e1
@@ -4,22 +4,22 @@ language: ruby
4
4
  script: bundle exec ruby spec/unicode_types_spec.rb
5
5
 
6
6
  rvm:
7
- - 2.6.1
8
- - 2.5.3
9
- - 2.4.5
10
- - 2.3.8
7
+ - 2.6
8
+ - 2.5
9
+ - 2.4
10
+ - 2.3
11
11
  - 2.2
12
12
  - 2.1
13
13
  - 2.0
14
14
  - ruby-head
15
15
  - jruby-head
16
- - jruby-9.2.6.0
16
+ - jruby-9.2.7.0
17
17
 
18
18
  matrix:
19
19
  allow_failures:
20
20
  - rvm: jruby-head
21
21
  - rvm: ruby-head
22
- - rvm: 2.3.8
22
+ - rvm: 2.3
23
23
  - rvm: 2.2
24
24
  - rvm: 2.1
25
25
  - rvm: 2.0
@@ -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
@@ -10,7 +10,7 @@ Determine the basic type of codepoints. This can be one of:
10
10
  - Noncharacter
11
11
  - Reserved
12
12
 
13
- Unicode version: **12.0.0** (March 2019)
13
+ Unicode version: **12.1.0** (May 2019)
14
14
 
15
15
  Supported Rubies: **2.6**, **2.5**, **2.4**
16
16
 
Binary file
@@ -2,8 +2,8 @@
2
2
 
3
3
  module Unicode
4
4
  module Types
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 + "/types.marshal.gz").freeze
9
9
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-types
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 the basic type of codepoints (Graphic, Format,
13
+ description: "[Unicode 12.1.0] Determine the basic type of codepoints (Graphic, Format,
14
14
  Control, Private-use, Surrogate, Noncharacter, Reserved)"
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 basic type of codepoints.