unicode-types 1.3.0 → 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: 170edb02b23794b7f703934e6919b8a59628e0a041e823c14fabc05a3c502b4d
4
- data.tar.gz: e6489dc3d3cc39bf5478659b8701f401dc7fc43a1cac6985ef1b240c229ec266
3
+ metadata.gz: e0ebc8bd9d3c9fdc05216e4e238d2b9fce3e32da022e8fb311d3b905f3a9b7ee
4
+ data.tar.gz: 96f5a3287c61604cc4e06737d82ace0a332a297a19a874295c0aa86bba7e6303
5
5
  SHA512:
6
- metadata.gz: f819a26e75d74045a7f3f0a5ff76babfcbec149f0c015a10566e046d23d17cf4126812ccbc1c8763fdee562e2d02c18c8aeedf9a37fcbdc81ab46c4ced821122
7
- data.tar.gz: 90c0aa8901a5b60ac78d7a06f34cd859e3d4c1e6b243987edcf10785c560e4c6174107353d7de39103d0c646cc8a5fa74ab768e9e69fbd41c5bb7885fe6403c8
6
+ metadata.gz: 062c019d388efa5dc62ac5c2b032bf2d3b237d864a5256d03e1a8e1ce25762f4bc21cba1242f94b6e60695b60b5e1759ae846c9227db9a87681f1f2f24e935da
7
+ data.tar.gz: a0bd61885efead199b81294e16acb05818c0c21d997a4c0f40eb0e788c0d3488e61e0c16f5dbc37bf2351583aea87824467f973d7739a695eab8e89c45042688
@@ -4,20 +4,22 @@ language: ruby
4
4
  script: bundle exec ruby spec/unicode_types_spec.rb
5
5
 
6
6
  rvm:
7
- - ruby-head
8
- - 2.5.1
9
- - 2.4.4
10
- - 2.3.7
7
+ - 2.6.1
8
+ - 2.5.3
9
+ - 2.4.5
10
+ - 2.3.8
11
11
  - 2.2
12
12
  - 2.1
13
13
  - 2.0
14
+ - ruby-head
14
15
  - jruby-head
15
- - jruby-9.1.16.0
16
+ - jruby-9.2.6.0
16
17
 
17
18
  matrix:
18
19
  allow_failures:
19
20
  - rvm: jruby-head
20
21
  - rvm: ruby-head
22
+ - rvm: 2.3.8
21
23
  - rvm: 2.2
22
24
  - rvm: 2.1
23
25
  - rvm: 2.0
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.4.0
4
+
5
+ * Unicode 12
6
+
3
7
  ### 1.3.0
4
8
 
5
9
  * Unicode 11
@@ -1,4 +1,4 @@
1
- Copyright (c) 2016-2018 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2016-2019 Jan Lelis, mail@janlelis.de
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Unicode::Types [![[version]](https://badge.fury.io/rb/unicode-types.svg)](http://badge.fury.io/rb/unicode-types) [![[travis]](https://travis-ci.org/janlelis/unicode-types.svg)](https://travis-ci.org/janlelis/unicode-types)
1
+ # Unicode::Types [![[version]](https://badge.fury.io/rb/unicode-types.svg)](https://badge.fury.io/rb/unicode-types) [![[travis]](https://travis-ci.org/janlelis/unicode-types.svg)](https://travis-ci.org/janlelis/unicode-types)
2
2
 
3
3
  Determine the basic type of codepoints. This can be one of:
4
4
 
@@ -10,11 +10,11 @@ Determine the basic type of codepoints. This can be one of:
10
10
  - Noncharacter
11
11
  - Reserved
12
12
 
13
- Unicode version: **11.0.0**
13
+ Unicode version: **12.0.0** (March 2019)
14
14
 
15
- Supported Rubies: **2.5**, **2.4**, **2.3**
15
+ Supported Rubies: **2.6**, **2.5**, **2.4**
16
16
 
17
- Old Rubies that might still work: **2.2**, **2.1**, **2.0**
17
+ Old Rubies that might still work: **2.3**, **2.2**, **2.1**, **2.0**
18
18
 
19
19
  ## Gemfile
20
20
 
@@ -43,6 +43,5 @@ See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related
43
43
 
44
44
  ## MIT License
45
45
 
46
- - Copyright (C) 2016-2018 Jan Lelis <http://janlelis.com>. Released under the MIT license.
46
+ - Copyright (C) 2016-2019 Jan Lelis <http://janlelis.com>. Released under the MIT license.
47
47
  - Unicode data: http://www.unicode.org/copyright.html#Exhibit1
48
-
Binary file
@@ -1,9 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Unicode
2
4
  module Types
3
- VERSION = "1.3.0".freeze
4
- UNICODE_VERSION = "11.0.0".freeze
5
- DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + '/../../../data/').freeze
6
- INDEX_FILENAME = (DATA_DIRECTORY + '/types.marshal.gz').freeze
5
+ VERSION = "1.4.0"
6
+ UNICODE_VERSION = "12.0.0"
7
+ DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
8
+ INDEX_FILENAME = (DATA_DIRECTORY + "/types.marshal.gz").freeze
7
9
  end
8
10
  end
9
-
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.3.0
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-06-05 00:00:00.000000000 Z
11
+ date: 2019-03-05 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 11.0.0] Determine the basic type of codepoints (Graphic, Format,
13
+ description: "[Unicode 12.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
@@ -53,8 +53,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  requirements: []
56
- rubyforge_project:
57
- rubygems_version: 2.7.6
56
+ rubygems_version: 3.0.1
58
57
  signing_key:
59
58
  specification_version: 4
60
59
  summary: Determine the basic type of codepoints.