unicode-name 1.8.0 → 1.9.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: 990fb6f9a183e60352b2454a9bd10c81e95751a691f0e2befcbf3609968f28fc
4
- data.tar.gz: a26eca42d8fd84fa6d52665c914a412e467f81ecf0382a97b001d3bf2342dfb5
3
+ metadata.gz: 27bbc8ba94544cd1daeaf3eb57a3f14bcb2b2f647595e112b68eae9234f8d735
4
+ data.tar.gz: 34c26e8b6663e9c73013c7cd2533b6d4851493fadbacb76ae3ff1a18e203b455
5
5
  SHA512:
6
- metadata.gz: e559f49fd4e35158d0b1aff712e7ec24fe9e275a2154cec0e06e7fe938dcdb777904cfb2da6fee6c2c1523acd4678cadd65281f8e6b7f0f11e1531e185ebb24c
7
- data.tar.gz: 8c66733be5610e8e66e20ec223a5068de6e2702a7be71299bbd7c76867f650fbb8c2149932ead89070b475fc400ebdfe8e44e1a9f143858b5d484a589ed722b3
6
+ metadata.gz: 7a5d8025a898a5617877faeeb3444d12b89ad410d4d4661ef147653aad40df2c546d980b658843d7926b1796023f8cab3fee0d279eb75743166005b7058fb879
7
+ data.tar.gz: c3ad2879f7a381968e6820f63d2d4e43308536f1faeb80a2d4a9c66f0a94c163c2b92781af14b50bd525d8f7bf81184114736be774099c09c9da75586a37d1c9
@@ -1,24 +1,20 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
 
4
- script: bundle exec ruby spec/unicode_name_spec.rb
5
-
6
4
  rvm:
5
+ - 2.7
7
6
  - 2.6
8
7
  - 2.5
9
8
  - 2.4
10
9
  - 2.3
11
- - 2.2
12
- - 2.1
13
- - 2.0
14
10
  - ruby-head
15
- - jruby-head
16
- - jruby-9.2.7.0
11
+ - jruby-9.2.9.0
12
+ - truffleruby
17
13
 
18
14
  matrix:
19
15
  allow_failures:
20
16
  - rvm: 2.3
21
- - rvm: 2.2
22
- - rvm: 2.1
23
- - rvm: 2.0
24
- - rvm: jruby-head
17
+ - rvm: ruby-head
18
+ - rvm: jruby-2.9.2.0
19
+ - rvm: truffleruby
20
+ # fast_finish: true
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.9.0
4
+
5
+ - Unicode 13
6
+
3
7
  ### 1.8.0
4
8
 
5
9
  * Unicode 12.1
data/Gemfile CHANGED
@@ -4,4 +4,4 @@ gemspec
4
4
 
5
5
  gem 'minitest'
6
6
  gem 'rake'
7
- gem 'irb'
7
+ gem 'irb' unless RUBY_ENGINE == "jruby"
@@ -1,4 +1,4 @@
1
- Copyright (c) 2016-2019 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2016-2020 Jan Lelis, https://janlelis.com
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
@@ -2,9 +2,9 @@
2
2
 
3
3
  Return Unicode codepoint names, aliases, and labels.
4
4
 
5
- Unicode version: **12.1.0** (May 2019)
5
+ Unicode version: **13.0.0** (March 2020)
6
6
 
7
- Supported Rubies: **2.6**, **2.5**, **2.4**
7
+ Supported Rubies: **2.7**, **2.6**, **2.5**, **2.4**
8
8
 
9
9
  Old Rubies that might still work: **2.3**, **2.2**, **2.1**, **2.0**
10
10
 
@@ -45,5 +45,5 @@ See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related
45
45
 
46
46
  ## MIT License
47
47
 
48
- - Copyright (C) 2016-2019 Jan Lelis <http://janlelis.com>. Released under the MIT license.
49
- - Unicode data: http://www.unicode.org/copyright.html#Exhibit1
48
+ - Copyright (C) 2016-2020 Jan Lelis <https://janlelis.com>. Released under the MIT license.
49
+ - Unicode data: https://www.unicode.org/copyright.html#Exhibit1
Binary file
@@ -2,8 +2,8 @@
2
2
 
3
3
  module Unicode
4
4
  module Name
5
- VERSION = "1.8.0"
6
- UNICODE_VERSION = "12.1.0"
5
+ VERSION = "1.9.0"
6
+ UNICODE_VERSION = "13.0.0"
7
7
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
8
8
  INDEX_FILENAME = (DATA_DIRECTORY + "/name.marshal.gz").freeze
9
9
  end
@@ -6,9 +6,9 @@ Gem::Specification.new do |gem|
6
6
  gem.name = "unicode-name"
7
7
  gem.version = Unicode::Name::VERSION
8
8
  gem.summary = "Returns name/aliases/label of a Unicode codepoint"
9
- gem.description = "[Unicode #{Unicode::Name::UNICODE_VERSION}] Returns name/aliases/label of a Unicode codepoint"
9
+ gem.description = "[Unicode #{Unicode::Name::UNICODE_VERSION}] Returns the name, aliases, or label of a Unicode code point"
10
10
  gem.authors = ["Jan Lelis"]
11
- gem.email = ["mail@janlelis.de"]
11
+ gem.email = ["hi@ruby.consulting"]
12
12
  gem.homepage = "https://github.com/janlelis/unicode-name"
13
13
  gem.license = "MIT"
14
14
 
@@ -17,6 +17,6 @@ Gem::Specification.new do |gem|
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
19
 
20
- gem.required_ruby_version = "~> 2.0"
21
- gem.add_dependency "unicode-types", "~> 1.5"
20
+ gem.required_ruby_version = ">= 2.0"
21
+ gem.add_dependency "unicode-types", "~> 1.6"
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-name
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.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-05-08 00:00:00.000000000 Z
11
+ date: 2020-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unicode-types
@@ -16,17 +16,18 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.5'
19
+ version: '1.6'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.5'
27
- description: "[Unicode 12.1.0] Returns name/aliases/label of a Unicode codepoint"
26
+ version: '1.6'
27
+ description: "[Unicode 13.0.0] Returns the name, aliases, or label of a Unicode code
28
+ point"
28
29
  email:
29
- - mail@janlelis.de
30
+ - hi@ruby.consulting
30
31
  executables: []
31
32
  extensions: []
32
33
  extra_rdoc_files: []
@@ -57,7 +58,7 @@ require_paths:
57
58
  - lib
58
59
  required_ruby_version: !ruby/object:Gem::Requirement
59
60
  requirements:
60
- - - "~>"
61
+ - - ">="
61
62
  - !ruby/object:Gem::Version
62
63
  version: '2.0'
63
64
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -66,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
66
67
  - !ruby/object:Gem::Version
67
68
  version: '0'
68
69
  requirements: []
69
- rubygems_version: 3.0.3
70
+ rubygems_version: 3.1.2
70
71
  signing_key:
71
72
  specification_version: 4
72
73
  summary: Returns name/aliases/label of a Unicode codepoint