unf_ext 0.0.8-x64-mingw32 → 0.0.8.1-x64-mingw32

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: a1518d4d6171a01f22fb1223abfc1f37f18733242ca06997738dc066a7cd2607
4
- data.tar.gz: ecd9a868a98974ae66c2858a0326a51567e825065d0fcf93f7d1ca9007be017e
3
+ metadata.gz: bdefd7fbf363f885d71de9e181d642726ae6cf74c68bee070cc5f579ae042437
4
+ data.tar.gz: 60af113ee70569dea93f4a3ce3ac30e89631e1a5fd32dfae1a34c89263610f2a
5
5
  SHA512:
6
- metadata.gz: 259d3d0b28a21f20572a888a967979c324ce3381b1a767bf38958f656f21299d481c23ac8b66033faff8b28644bed7dd53bd16ce1a64e1a0689c2f514a0e9880
7
- data.tar.gz: d5390a8a94710720c92bfe51231bc621ad3cb05387df72cf7f97cfb0524a1462e5199042e327ca41b70701689bea0d3914a8b51804055868afca03640472b9c9
6
+ metadata.gz: 4747c5645a7583a8577fd0f233f66d8ef805a22a5db1ce9ecdc7c82b4ee2581b4b9ae87c05b4d0c24dfb9c23b05bc904daa089d5d6c8a9dbc6335083c66f524c
7
+ data.tar.gz: 97e268cf85a305d08f028274932931c8df40f6df5d48fc7fcd7bd167e2660baab6abf9d7430a9dabe06ac69cc12a85da028756f2e39a44a884c04368198386c5
@@ -12,12 +12,10 @@ jobs:
12
12
  fail-fast: false
13
13
  matrix:
14
14
  os: [ ubuntu-20.04, macos-11.0, windows-2019 ]
15
- ruby: [ 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, head ]
15
+ ruby: [ 2.6, 2.7, "3.0", 3.1, head ]
16
16
  include:
17
17
  - { os: windows-2019, ruby: mingw }
18
18
  exclude:
19
- - { os: macos-11.0, ruby: 2.2 }
20
- - { os: macos-11.0, ruby: 2.3 }
21
19
  - { os: windows-2019, ruby: head }
22
20
 
23
21
  steps:
@@ -33,10 +31,6 @@ jobs:
33
31
  - name: bundle install
34
32
  shell: pwsh
35
33
  run: |
36
- # update RubyGems in Ruby 2.2, bundle install
37
- if ('${{ matrix.ruby }}' -lt '2.3') {
38
- gem update --system 2.7.10 --no-document
39
- }
40
34
  bundle config set --local path .bundle/vendor
41
35
  bundle install --jobs 4 --retry 3
42
36
 
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- ## 0.0.8
1
+ ## 0.0.8.1 (2022-03-13)
2
+
3
+ - Include Windows binaries for Ruby 3.1.
4
+
5
+ ## 0.0.8 (2021-09-14)
2
6
 
3
7
  - No functional change in the library code.
4
8
  - Include Windows binaries for Ruby 3.0.
data/lib/2.4/unf_ext.so CHANGED
Binary file
data/lib/2.5/unf_ext.so CHANGED
Binary file
data/lib/2.6/unf_ext.so CHANGED
Binary file
data/lib/2.7/unf_ext.so CHANGED
Binary file
data/lib/3.0/unf_ext.so CHANGED
Binary file
@@ -1,5 +1,5 @@
1
1
  module UNF
2
2
  class Normalizer
3
- VERSION = "0.0.8"
3
+ VERSION = "0.0.8.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unf_ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.8.1
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Takeru Ohta
8
8
  - Akinori MUSHA
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-09-14 00:00:00.000000000 Z
12
+ date: 2022-03-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -120,7 +120,6 @@ files:
120
120
  - ext/unf_ext/unf/trie/node.hh
121
121
  - ext/unf_ext/unf/trie/searcher.hh
122
122
  - ext/unf_ext/unf/util.hh
123
- - lib/2.3/unf_ext.so
124
123
  - lib/2.4/unf_ext.so
125
124
  - lib/2.5/unf_ext.so
126
125
  - lib/2.6/unf_ext.so
@@ -136,7 +135,7 @@ homepage: https://github.com/knu/ruby-unf_ext
136
135
  licenses:
137
136
  - MIT
138
137
  metadata: {}
139
- post_install_message:
138
+ post_install_message:
140
139
  rdoc_options: []
141
140
  require_paths:
142
141
  - lib
@@ -144,7 +143,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
144
143
  requirements:
145
144
  - - ">="
146
145
  - !ruby/object:Gem::Version
147
- version: '2.3'
146
+ version: '2.4'
148
147
  - - "<"
149
148
  - !ruby/object:Gem::Version
150
149
  version: 3.1.dev
@@ -154,8 +153,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
154
153
  - !ruby/object:Gem::Version
155
154
  version: '0'
156
155
  requirements: []
157
- rubygems_version: 3.2.3
158
- signing_key:
156
+ rubygems_version: 3.3.4
157
+ signing_key:
159
158
  specification_version: 4
160
159
  summary: Unicode Normalization Form support library for CRuby
161
160
  test_files:
data/lib/2.3/unf_ext.so DELETED
Binary file