unicode-age 2.2.0 → 2.3.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: '044887cc2a5f310d1c29a083a78e88e9c43ae818abe113a84b861edef7f8e36e'
4
- data.tar.gz: f9d3cf944fa4ed27440371dce5094463b77303b0245989007a7b9eac8222e277
3
+ metadata.gz: 41dfa269310c6a6aeae245e24a6d13da8da678817ab138536a9cda89384b4cbd
4
+ data.tar.gz: 952907518f0e9aac1f6a60055327faa09d1709acb5efcd87c4fd9f5b72f5030c
5
5
  SHA512:
6
- metadata.gz: da21861d6834b9fb68f4c399fe8a07c6b1101f88f1afd03713f3b92f34bea838e79f7888f464b3c43ba7dafd8a2c09bb4b9ee807ebb07a929f09e36b4d36bb88
7
- data.tar.gz: 0a1bcae0b8c5fae2fda9622d07ac3edd865ed7170b0527a719fdf36aa243415422ae422a58c1c400b0b2ef3516e687570ba8a4c9b275b843fc597e9c4f99a0f3
6
+ metadata.gz: ca2180ea50b01348befc40a5e24c4d3d6c46667942b29cf32e9fd8d5ede874e41cf56c5ed84c317dc288a197bd58dd2605fdb6e1e316270e9b545e3b28b59f43
7
+ data.tar.gz: bae1c10d360d1897566382251be813720a8aef9bd1b1ff4f0dcdafd6661bc43c194e13fe37a64749c73275b6cb0293431f1ad8b637ac25429b158d1bfed52126
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 2.3.0
4
+
5
+ * Support Unicode 13 (Ruby 3.1)
6
+
3
7
  ### 2.2.0
4
8
 
5
9
  * Support Ruby 3.0
data/MIT-LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2016-2020 Jan Lelis, https://janlelis.com
1
+ Copyright (c) 2016-2021 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
@@ -23,4 +23,4 @@ See the [Unicode — Ruby version table at Idiosyncratic Ruby](https://idiosyncr
23
23
 
24
24
  ## MIT License
25
25
 
26
- Copyright (C) 2016-2020 Jan Lelis <https://janlelis.com>. Released under the MIT license.
26
+ Copyright (C) 2016-2021 Jan Lelis <https://janlelis.com>. Released under the MIT license.
@@ -2,8 +2,8 @@
2
2
 
3
3
  module Unicode
4
4
  module Age
5
- VERSION = "2.2.0"
6
- UNICODE_VERSION = "12.1.0"
5
+ VERSION = "2.3.0"
6
+ UNICODE_VERSION = "13.0.0"
7
7
  end
8
8
  end
9
9
 
data/lib/unicode/age.rb CHANGED
@@ -27,6 +27,7 @@ module Unicode
27
27
  11.0,
28
28
  12.0,
29
29
  12.1,
30
+ 13.0,
30
31
  ].freeze
31
32
 
32
33
  KNOWN_UNICODE_REGEXES = KNOWN_UNICODE_VERSIONS.map{ |uv|
data/unicode-age.gemspec CHANGED
@@ -16,6 +16,7 @@ Gem::Specification.new do |gem|
16
16
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
+ gem.metadata = { "rubygems_mfa_required" => "true" }
19
20
 
20
21
  gem.required_ruby_version = ">= 2.0", "< 4.0"
21
22
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-age
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.3.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: 2020-12-30 00:00:00.000000000 Z
11
+ date: 2021-12-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 12.1.0] A micromodule to detect which Unicode version is required
13
+ description: "[Unicode 13.0.0] A micromodule to detect which Unicode version is required
14
14
  to display a string."
15
15
  email:
16
16
  - hi@ruby.consulting
@@ -34,7 +34,8 @@ files:
34
34
  homepage: https://github.com/janlelis/unicode-age
35
35
  licenses:
36
36
  - MIT
37
- metadata: {}
37
+ metadata:
38
+ rubygems_mfa_required: 'true'
38
39
  post_install_message:
39
40
  rdoc_options: []
40
41
  require_paths:
@@ -53,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
54
  - !ruby/object:Gem::Version
54
55
  version: '0'
55
56
  requirements: []
56
- rubygems_version: 3.2.3
57
+ rubygems_version: 3.2.22
57
58
  signing_key:
58
59
  specification_version: 4
59
60
  summary: Determine required Unicode version of a string.