unicode-sequence_name 1.13.0 → 1.14.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: aafb17b3d62ba18cd902df787bc9d114a193b7efc1f36faa847c5aea97949c28
4
- data.tar.gz: a27797d3a9f9268a0353fc55bf9d6509a13fdfa57cde40f378d0f9d78b70f4fe
3
+ metadata.gz: dc56290d80aa559b72e07cdb113a85785bf38408d3aa8c60cf6ab1096a7c77ab
4
+ data.tar.gz: e7e6183d46725245663b546c68abe9335ae633247d7814ccea486c1cb55bd033
5
5
  SHA512:
6
- metadata.gz: e20286349ee5a8d0647ccd6a4bfe29ba355217f95edb146dcde4db7b2f3df86ed08f9f9cd93e3f521564305567adaee45f71acd3122bfc17652501a8d5d9745f
7
- data.tar.gz: a7b58d30bc6967d833481d5caa93eaba02ab0f8587f1017e4f9d952d4904d746cac129eb0fe0339fb1ac70f11b536aef8a2d40bbe1217bf3d7a9ac009a6b7c29
6
+ metadata.gz: ab8100396577cb4b360f13eef2cdb9f18ddd66436d1c39046d54d45c33aa4cbd9b6f5afc421368dfe816171b6261b0d4eaecd1cef59a0ef594a13974927da1f8
7
+ data.tar.gz: 9bafbec1dac2df24e2c3b8654c76e4939b415609f8eb30989a3153486fe1d3405f83a6f885df601cc6e7dadea12f209460550faf2f7a4fbda3d2e69d55fb63dd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.14.0
4
+
5
+ - Unicode 16.0
6
+ - Emoji 16.0
7
+
3
8
  ### 1.13.0
4
9
 
5
10
  - Unicode 15.1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- unicode-sequence_name (1.13.0)
4
+ unicode-sequence_name (1.14.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/MIT-LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017-2023 Jan Lelis, https://janlelis.com
1
+ Copyright (c) 2017-2024 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,15 +2,15 @@
2
2
 
3
3
  Returns the name of a Unicode codepoint sequence (= more than one codepoint involved), if one exists.
4
4
 
5
- Unicode version: **15.1.0** (September 2023)
5
+ Unicode version: **16.0.0** (September 2024)
6
6
 
7
- Emoji version: **15.0** (September 2022)
7
+ Emoji version: **16.0** (September 2024)
8
8
 
9
9
  IVD version: **2022-09-13** (September 2022)
10
10
 
11
- Supported Rubies: **3.2**, **3.1**, **3.0**
11
+ Supported Rubies: **3.3**, **3.2**, **3.1**, **3.0**
12
12
 
13
- Old Rubies which might still work: **2.X**
13
+ Old Rubies which might still work: **2.7**, **2.6**, **2.5**, **2.4**, **2.3**, **2.X**
14
14
 
15
15
  ## Usage
16
16
 
@@ -29,6 +29,7 @@ Unicode::SequenceName.of "❤️‍🔥" # => "HEART ON FIRE"
29
29
  Unicode::SequenceName.of "🫱🏻‍🫲🏾" # => "HANDSHAKE: LIGHT SKIN TONE, MEDIUM-DARK SKIN TONE"
30
30
  Unicode::SequenceName.of "🐦‍⬛" # => "BLACK BIRD"
31
31
  Unicode::SequenceName.of "🙂‍↔️" # => "HEAD SHAKING HORIZONTALLY"
32
+ Unicode::SequenceName.of "‘︁" # => "LEFT SINGLE QUOTATION MARK (right-justified fullwidth form)"
32
33
  ```
33
34
 
34
35
  Names for singular codepoints are not included, you can use [unicode-name](https://github.com/janlelis/unicode-name) for that purpose.
@@ -40,5 +41,5 @@ Names for singular codepoints are not included, you can use [unicode-name](https
40
41
 
41
42
  ## MIT License
42
43
 
43
- - Copyright (C) 2017-2023 Jan Lelis <https://janlelis.com>. Released under the MIT license.
44
+ - Copyright (C) 2017-2024 Jan Lelis <https://janlelis.com>. Released under the MIT license.
44
45
  - Unicode data: https://www.unicode.org/copyright.html#Exhibit1
Binary file
@@ -2,9 +2,9 @@
2
2
 
3
3
  module Unicode
4
4
  module SequenceName
5
- VERSION = "1.13.0"
6
- UNICODE_VERSION = "15.1.0"
7
- EMOJI_VERSION = "15.1"
5
+ VERSION = "1.14.0"
6
+ UNICODE_VERSION = "16.0.0"
7
+ EMOJI_VERSION = "16.0"
8
8
  IVD_VERSION = "2022-09-13"
9
9
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
10
10
  INDEX_FILENAME = (DATA_DIRECTORY + "/sequence_name.marshal.gz").freeze
@@ -16,6 +16,7 @@ describe Unicode::SequenceName do
16
16
  assert_equal "HANDSHAKE: LIGHT SKIN TONE, MEDIUM-DARK SKIN TONE", Unicode::SequenceName.of("🫱🏻‍🫲🏾") # Emoji 14.0
17
17
  assert_equal "BLACK BIRD", Unicode::SequenceName.of("🐦‍⬛") # Emoji 15.0
18
18
  assert_equal "HEAD SHAKING HORIZONTALLY", Unicode::SequenceName.of("🙂‍↔️") # Emoji 15.1
19
+ assert_equal "LEFT SINGLE QUOTATION MARK (right-justified fullwidth form)", Unicode::SequenceName.of("‘︁") # Unicode 16.0
19
20
  end
20
21
 
21
22
  it "will return nil for characters without name" do
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-sequence_name
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-01 00:00:00.000000000 Z
11
+ date: 2024-09-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 15.1.0][Emoji 15.1] Returns the name of a Unicode code point
13
+ description: "[Unicode 16.0.0][Emoji 16.0] Returns the name of a Unicode code point
14
14
  sequence, if one exists"
15
15
  email:
16
16
  - hi@ruby.consulting
@@ -38,7 +38,7 @@ licenses:
38
38
  - MIT
39
39
  metadata:
40
40
  rubygems_mfa_required: 'true'
41
- post_install_message:
41
+ post_install_message:
42
42
  rdoc_options: []
43
43
  require_paths:
44
44
  - lib
@@ -53,8 +53,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  requirements: []
56
- rubygems_version: 3.4.4
57
- signing_key:
56
+ rubygems_version: 3.5.9
57
+ signing_key:
58
58
  specification_version: 4
59
59
  summary: Returns the name of a Unicode codepoint sequence, if one exists
60
60
  test_files: