characteristics 1.1.0 → 1.2.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: 78341f2728dc7ef9e2f869c8b9876e5762b9af616cd2cbf22b8e6944b47eaf67
4
- data.tar.gz: 3bfc5bdc6592244cd00be06fecc4fbd282f59f36efaaeee6db751e6037656dc1
3
+ metadata.gz: 561f5469ee65add83634e17a349c04640d27a38bebb845997c07bd636eac127b
4
+ data.tar.gz: 94773cb028ab6e488d2fa3bab19499fa963b3f180bb300374c0c45e98f7f22aa
5
5
  SHA512:
6
- metadata.gz: 5b75c5ad8083386ef6ab60b19aafcfc47dd5410db0e46a793acb646ef7ae2035e680d9ee526816eb69065cf99be53457130940e9a3ffdff7fe6bcc7e6e69d493
7
- data.tar.gz: 0773244fbe64bdba53952fe6945cf80b6b07433abb5027375c3cf3f06084bbf98d8f6607cb7aba1faf5ce7503949e69bc605e2c4a513ff96b23a10bd0a58eeed
6
+ metadata.gz: 9650b52b86ba29bbbff4239b0beb22dcb25e67ad4a6e5c33c1d5e0358568d036584a32de2ae0de52120c3cddc945961148cdfd5621f4e6f9a968843e48fc9add
7
+ data.tar.gz: d0a6a21c59d51c2fd5de533cc75fce270f3d0767b647024c90b499901a0d1e214d5d04f57c53753acc724eeffd5274859a2410e3f3c1126f680fe1ad121d6eed
@@ -3,19 +3,21 @@ language: ruby
3
3
 
4
4
  rvm:
5
5
  - ruby-head
6
- - 2.5.1
7
- - 2.4.4
8
- - 2.3.7
6
+ - 2.6.1
7
+ - 2.5.3
8
+ - 2.4.5
9
+ - 2.3.8
9
10
  - 2.2
10
11
  - 2.1
11
12
  - 2.0
12
13
  - jruby-head
13
- - jruby-9.1.16.0
14
+ - jruby-9.2.6.0
14
15
 
15
16
  matrix:
16
17
  allow_failures:
17
18
  - rvm: jruby-head
18
19
  - rvm: ruby-head
20
+ - rvm: 2.3.8
19
21
  - rvm: 2.2
20
22
  - rvm: 2.1
21
23
  - rvm: 2.0
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.2.0
4
+
5
+ * Unicode 12 (general categories)
6
+
3
7
  ### 1.1.0
4
8
 
5
9
  * Unicode 11 (general categories)
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2017-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
- # Characteristics [![[version]](https://badge.fury.io/rb/characteristics.svg)](http://badge.fury.io/rb/characteristics) [![[travis]](https://travis-ci.org/janlelis/characteristics.svg)](https://travis-ci.org/janlelis/characteristics)
1
+ # Characteristics [![[version]](https://badge.fury.io/rb/characteristics.svg)](https://badge.fury.io/rb/characteristics) [![[travis]](https://travis-ci.org/janlelis/characteristics.svg)](https://travis-ci.org/janlelis/characteristics)
2
2
 
3
3
  A Ruby library that provides additional info about characters:¹
4
4
 
@@ -8,7 +8,7 @@ A Ruby library that provides additional info about characters:¹
8
8
 
9
9
  Extra data is available for Unicode characters (see below).
10
10
 
11
- The [unibits](https://github.com/janlelis/unibits) and [uniscribe](https://github.com/janlelis/uniscribe) gems makes use of this data to visualize it accordingliy.
11
+ The [unibits](https://github.com/janlelis/unibits) and [uniscribe](https://github.com/janlelis/uniscribe) gems makes use of this data to visualize it accordingly.
12
12
 
13
13
  ¹ in the sense of [codepoints](https://en.wikipedia.org/wiki/Codepoint)
14
14
 
@@ -118,4 +118,4 @@ This flag is *true* only for special formatting characters, which are not contro
118
118
 
119
119
  ## MIT License
120
120
 
121
- Copyright (C) 2017 Jan Lelis <http://janlelis.com>. Released under the MIT license.
121
+ Copyright (C) 2017-2019 Jan Lelis <http://janlelis.com>. Released under the MIT license.
@@ -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.3'
21
+ gem.add_dependency 'unicode-categories', '~> 1.4'
22
22
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Characteristics
4
- VERSION = "1.1.0"
5
- UNICODE_VERSION = "11.0.0"
4
+ VERSION = "1.2.0"
5
+ UNICODE_VERSION = "12.0.0"
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: 1.1.0
4
+ version: 1.2.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
13
  - !ruby/object:Gem::Dependency
14
14
  name: unicode-categories
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.3'
19
+ version: '1.4'
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.3'
26
+ version: '1.4'
27
27
  description: A Ruby library which provides some basic information about how characters
28
28
  behave in different encodings.
29
29
  email:
@@ -68,8 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
68
  - !ruby/object:Gem::Version
69
69
  version: '0'
70
70
  requirements: []
71
- rubyforge_project:
72
- rubygems_version: 2.7.6
71
+ rubygems_version: 3.0.1
73
72
  signing_key:
74
73
  specification_version: 4
75
74
  summary: Basic character properties.