characteristics 0.7.0 → 0.8.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: 8bd09e16bed3587eaa18057790766a6e720e3d25
4
- data.tar.gz: 0bb97a8df68aa447fce5b04750573ef9da8a7373
3
+ metadata.gz: 1d46522f45a1d7ffee9d20d69f4ab453b41f2d5b
4
+ data.tar.gz: 329cf2a968a9f75f849ecc9a23c6b707a65d3a0a
5
5
  SHA512:
6
- metadata.gz: '0519adb1524a00105cb7bc54b329aadac50ad2fd350bbe0fda9356474e038a52796ad6548cd3a33865b943f1fd66ae22c5c6bf0673c8528b31cfdf2b5296626e'
7
- data.tar.gz: 4a10cc4ec190ca4ed5fdf075449ce8d655182a70cc09faeb75e3805a02a0c7798b762901e6ff881723170f5a7bf51bc119c4af18c44be51c8fb803722db956f7
6
+ metadata.gz: fecbf3a9df821bfbd56a0425f7bec83e8bb732a7223c9d277b5e123834ff9c35d1e2765e7fcbabc872de7d88b1dfea427908287043fe23edcad7527289b0c80b
7
+ data.tar.gz: c9e2f607b8952a05e3ed3d7407ca87cbab2bec4db7a2e411b658102411577e796eb882173062f35e506fa06e198a2dbe72948a28b16b93a1e62c01b266eed65a
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 0.8.0
4
+
5
+ * Unicode 10 (general categories)
6
+
3
7
  ### 0.7.0
4
8
 
5
9
  * Add more Unicode properties
@@ -18,5 +18,5 @@ Gem::Specification.new do |gem|
18
18
  gem.require_paths = ["lib"]
19
19
 
20
20
  gem.required_ruby_version = "~> 2.0"
21
- gem.add_dependency 'unicode-categories', '~> 1.1', '>= 1.1.2'
21
+ gem.add_dependency 'unicode-categories', '~> 1.2'
22
22
  end
@@ -3,6 +3,9 @@
3
3
  require "unicode/categories"
4
4
 
5
5
  class UnicodeCharacteristics < Characteristics
6
+ # Note that this list is maintained by hand and might not cover the latest Unicode updates
7
+ # Please open an issue or pull request is you find another character that is rendered invisible:
8
+ # - https://github.com/janlelis/characteristics/issues/new
6
9
  BLANKS = [
7
10
  0x0009,
8
11
  0x0020,
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Characteristics
4
- VERSION = "0.7.0".freeze
5
- UNICODE_VERSION = "9.0.0".freeze
4
+ VERSION = "0.8.0".freeze
5
+ UNICODE_VERSION = "10.0.0".freeze
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: characteristics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.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-31 00:00:00.000000000 Z
11
+ date: 2017-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unicode-categories
@@ -16,20 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.1'
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 1.1.2
19
+ version: '1.2'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
24
  - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: '1.1'
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: 1.1.2
26
+ version: '1.2'
33
27
  description: A Ruby library which provides some basic information about how characters
34
28
  behave in different encodings.
35
29
  email:
@@ -75,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
69
  version: '0'
76
70
  requirements: []
77
71
  rubyforge_project:
78
- rubygems_version: 2.6.8
72
+ rubygems_version: 2.6.11
79
73
  signing_key:
80
74
  specification_version: 4
81
75
  summary: Basic character properties.