numo-libsvm 3.1.1 → 3.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: 03dd06a979fac643362f39021cef559518ba64020707dc80519302b4f96cbda7
4
- data.tar.gz: fc158a4d9421a3d15a9b848c4ca80a48848fcf37ff2a0e1cc733836c9abda2f8
3
+ metadata.gz: b3df079b653edcc953f0b113bba347f9269f256a2cec49d686969e5720fd197a
4
+ data.tar.gz: 5658a7eb04c778cb2d569344356d3883d7c3b805fcf4221eddb4ef6d76195f7c
5
5
  SHA512:
6
- metadata.gz: 188c13ade247698e594269c9a866abb6a6fa2a4a1e65daa8f34f57fe8b539124f0b894e921768207acb39f2ff93a1d9228095a3e18479edcdb05d46e60b75e99
7
- data.tar.gz: 3a0552baa7e69208c36fbca678ec9837e1b55d6cff41a7ffe9254579b2ebc2609b0e54a96f517239c9cfeefd0320fa21b6510958e001686ae65fd79028667535
6
+ metadata.gz: cbebfdda4c25a101020c90a83c6cd66834feb334d0c712bc319688996d55b3a72dc9bf8be8d63dc89cd2043f062f7f9fb8fcd453f25bea133af78fa950edf77e
7
+ data.tar.gz: ec79993a2c85b9d7a98b8b645e262a3fe4720891415f1b46237d60dd4e71e784e8f818d009ff9aa667488c94bd64b69df1732416cc3bb14a1e00740276cd020d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # [[3.2.0](https://github.com/yoshoku/numo-libsvm/compare/v3.1.1...v3.2.0)] - 2026-07-05
2
+
3
+ - Relax numo-narray-alt upper bound to < 0.12.0.
4
+
1
5
  # [[3.1.1](https://github.com/yoshoku/numo-libsvm/compare/v3.1.0...v3.1.1)] - 2026-02-17
2
6
 
3
7
  - Remove unnecessary C++ shared library loading check from native extensions build step.
@@ -3,6 +3,6 @@
3
3
  module Numo
4
4
  module Libsvm
5
5
  # The version of Numo::Libsvm you are using.
6
- VERSION = '3.1.1'
6
+ VERSION = '3.2.0'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-libsvm
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: 0.9.10
19
19
  - - "<"
20
20
  - !ruby/object:Gem::Version
21
- version: 0.11.0
21
+ version: 0.12.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: 0.9.10
29
29
  - - "<"
30
30
  - !ruby/object:Gem::Version
31
- version: 0.11.0
31
+ version: 0.12.0
32
32
  description: |
33
33
  Numo::Libsvm is a Ruby gem binding to the LIBSVM library.
34
34
  LIBSVM is one of the famous libraries that implemented Support Vector Machines,
@@ -60,7 +60,7 @@ metadata:
60
60
  homepage_uri: https://github.com/yoshoku/numo-libsvm
61
61
  source_code_uri: https://github.com/yoshoku/numo-libsvm
62
62
  changelog_uri: https://github.com/yoshoku/numo-libsvm/blob/main/CHANGELOG.md
63
- documentation_uri: https://gemdocs.org/gems/numo-libsvm/3.1.1/
63
+ documentation_uri: https://gemdocs.org/gems/numo-libsvm/3.2.0/
64
64
  rubygems_mfa_required: 'true'
65
65
  rdoc_options: []
66
66
  require_paths:
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
78
  requirements: []
79
- rubygems_version: 4.0.3
79
+ rubygems_version: 4.0.13
80
80
  specification_version: 4
81
81
  summary: Numo::Libsvm is a Ruby gem binding to the LIBSVM library. Numo::Libsvm makes
82
82
  to use the LIBSVM functions with dataset represented by Numo::NArray.