unicode-types 1.1.2 → 1.2.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
  SHA1:
3
- metadata.gz: e9488ebcd84e5ca6243a189ba0424afa3793c565
4
- data.tar.gz: 2df94931f98452e6d948f5bf9fe300d752ddc9a4
3
+ metadata.gz: af3def36455c8a364cc3474d96f4019a31b16e46
4
+ data.tar.gz: 30d451245da23a3dfdae6168aa06db37e20f69cf
5
5
  SHA512:
6
- metadata.gz: 2589173a6bbb02749b23c7f82fa136c7c7380a552095e08aebd4479ad0d07ff0e8aa92bdfa671960103ea359b9b1efa3a59637cf943588dbad2cd6bc102339b5
7
- data.tar.gz: af68eea885a8bc4b22e6eff8863c5b9f2c93e888feda6dd352dfe895220ed31e8c27d96757aa6b8f580ae60b1b2f964b66a3d1ea99f3fc3e1fdf6f2f6c41887c
6
+ metadata.gz: 0ea312f2367bbfd595b6a139b1bfea290f90348574f33c0883daf81af9cbf8fcee83ec4456d31fe9ed73a28687a5dc9fe20ba2181942b880894c2d68867710fd
7
+ data.tar.gz: cb4b43b18d77a773a44caeb878f4ad27957e57439957b8f3fdd7efb0c16097875bb269f8b4bfea48548e969e1697b8a7bdd0847fbd5ca26f5d00dca5014c3a26
@@ -5,13 +5,13 @@ script: bundle exec ruby spec/unicode_types_spec.rb
5
5
 
6
6
  rvm:
7
7
  - ruby-head
8
- - 2.4.0
9
- - 2.3.3
8
+ - 2.4.1
9
+ - 2.3.4
10
10
  - 2.2
11
11
  - 2.1
12
12
  - 2.0
13
13
  - jruby-head
14
- - jruby-9.1.7.0
14
+ - jruby-9.1.12.0
15
15
 
16
16
  cache:
17
17
  - bundler
@@ -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 that surrogates were detected in UTF-8 (regression of 1.1.1)
data/Gemfile CHANGED
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  gem 'minitest'
6
+ gem 'rake'
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: **9.0.0**
13
+ Unicode version: **10.0.0**
14
14
 
15
15
  Supported Rubies: **2.4**, **2.3**, **2.2**, **2.1**
16
16
 
Binary file
@@ -1,7 +1,7 @@
1
1
  module Unicode
2
2
  module Types
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 + '/types.marshal.gz').freeze
7
7
  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.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-19 00:00:00.000000000 Z
11
+ date: 2017-06-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 9.0.0] Determine the basic type of codepoints (Graphic, Format,
13
+ description: "[Unicode 10.0.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
@@ -23,6 +23,7 @@ files:
23
23
  - CHANGELOG.md
24
24
  - CODE_OF_CONDUCT.md
25
25
  - Gemfile
26
+ - Gemfile.lock
26
27
  - MIT-LICENSE.txt
27
28
  - README.md
28
29
  - Rakefile
@@ -31,7 +32,6 @@ files:
31
32
  - lib/unicode/types/constants.rb
32
33
  - lib/unicode/types/index.rb
33
34
  - lib/unicode/types/string_ext.rb
34
- - spec/.unicode_types_spec.rb.swp
35
35
  - spec/unicode_types_spec.rb
36
36
  - unicode-types.gemspec
37
37
  homepage: https://github.com/janlelis/unicode-types
@@ -54,10 +54,9 @@ 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 basic type of codepoints.
61
61
  test_files:
62
- - spec/.unicode_types_spec.rb.swp
63
62
  - spec/unicode_types_spec.rb