numo-liblinear 3.1.0 → 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: 3ce43a5ff368e9e41dec94c04a8096d8d4ee358ec1e58a2dc3e51845d2b92530
4
- data.tar.gz: 1ddc8f7415d7e2cf6b6fce4f4efc618f0cda5ed63d03a1d8b7ab7987a93425f0
3
+ metadata.gz: 0b8e4fc48b8d4a1fe6ed74ca29861b11274f157c5a102b219769810d74ad73e3
4
+ data.tar.gz: 0f2dd0c48551f1a2deefb199483b2f314db8709959384724972651bfc9c96dda
5
5
  SHA512:
6
- metadata.gz: 3229e72e815c2a5cabecde251e831e80bf162c31c0961cf8bdfd4c96ac2c3a4ac8a58b7889ddb5a56042f995c68d5d597d1e9cb62316b088dc635597ab858f2d
7
- data.tar.gz: '00578ba1f6a1bd22dc0e7925f8feb97eba6a2af0a7633f72da288a9268c50e182611fca04ece54bdc21ff1659f28f267ad7f86edfa045a90ed3c221c1d71ef47'
6
+ metadata.gz: 81d9345c21e47eaf2796d9b52588b8d1e44c4898d66600d5c51e24c0ffaf476ee78d6c461f83d5ac86a9ec52dd275128082bf4f65bd8318499198a73c9adcee1
7
+ data.tar.gz: 7be12527d6844ab10b9898c3e765d1d0ceface887081e095e962dc4cc14e3bf4cf0a76a55fc936a186993e387be349e2fd84ccf7e0a7089f31d25b344684c99c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,14 @@
1
+ # [[3.2.0](https://github.com/yoshoku/numo-liblinear/compare/v3.1.1...v3.2.0)] - 2026-07-05
2
+
3
+ - Relax numo-narray-alt upper bound to < 0.12.0.
4
+
5
+ # [[3.1.1](https://github.com/yoshoku/numo-liblinear/compare/v3.1.0...v3.1.1)] - 2026-02-17
6
+
7
+ - Remove unnecessary C++ shared library loading check from native extensions build step.
8
+
1
9
  # [[3.1.0](https://github.com/yoshoku/numo-liblinear/compare/v3.0.1...v3.1.0)] - 2026-02-06
2
10
 
3
- - relax numo-narray-alt version constraint to >= 0.9.10, < 0.11.0.
11
+ - Relax numo-narray-alt version constraint to >= 0.9.10, < 0.11.0.
4
12
 
5
13
  # [[3.0.1](https://github.com/yoshoku/numo-liblinear/compare/v3.0.0...v3.0.1)] - 2025-11-19
6
14
 
@@ -9,7 +17,7 @@
9
17
 
10
18
  # [[3.0.0](https://github.com/yoshoku/numo-liblinear/compare/v2.4.0...v3.0.0)] - 2025-10-01
11
19
 
12
- **Breaking chage**
20
+ **Breaking change**
13
21
 
14
22
  - Change dependency from numo-narray to [numo-narray-alt](https://github.com/yoshoku/numo-narray-alt).
15
23
 
@@ -35,7 +43,7 @@
35
43
 
36
44
  # 2.0.0
37
45
  - Redesign native extension codes.
38
- - Change not ot use git submodule for LIBLINEAR codes bundle.
46
+ - Change not to use git submodule for LIBLINEAR codes bundle.
39
47
  - Introduce conventional commits.
40
48
 
41
49
  # 1.2.2
@@ -65,7 +73,7 @@
65
73
  There is no need to install LIBLINEAR in advance to use Numo::LIBLINEAR.
66
74
 
67
75
  # 0.5.0
68
- - Fix to use LIBLINEAR sparce vector representation for internal processing.
76
+ - Fix to use LIBLINEAR sparse vector representation for internal processing.
69
77
 
70
78
  # 0.4.0
71
79
  - Add verbose parameter to output learning process messages.
@@ -26,20 +26,6 @@ if RUBY_PLATFORM.match?(/darwin/) && Gem::Version.new('3.1.0') <= Gem::Version.n
26
26
  end
27
27
  end
28
28
 
29
-
30
- have_libcpp = false
31
- if RUBY_PLATFORM.include?('darwin')
32
- if have_library('c++')
33
- have_libcpp = true
34
- else
35
- warn 'libc++ is not found.'
36
- end
37
- end
38
-
39
- if !have_libcpp && !RUBY_PLATFORM.include?('mswin')
40
- warn 'libstdc++ is not found.' unless have_library('stdc++')
41
- end
42
-
43
29
  $srcs = Dir.glob("#{$srcdir}/**/*.cpp").map { |path| File.basename(path) }
44
30
  $srcs.concat(%w[daxpy.c ddot.c dnrm2.c dscal.c])
45
31
 
@@ -3,6 +3,6 @@
3
3
  module Numo
4
4
  module Liblinear
5
5
  # The version of Numo::Liblienar you are using.
6
- VERSION = '3.1.0'
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-liblinear
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
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::Liblinear is a Ruby gem binding to the LIBLINEAR library.
34
34
  LIBLINEAR is one of the famous libraries for large-scale regularized linear classification and regression.
@@ -67,7 +67,7 @@ metadata:
67
67
  homepage_uri: https://github.com/yoshoku/numo-liblinear
68
68
  source_code_uri: https://github.com/yoshoku/numo-liblinear
69
69
  changelog_uri: https://github.com/yoshoku/numo-liblinear/blob/main/CHANGELOG.md
70
- documentation_uri: https://gemdocs.org/gems/numo-liblinear/3.1.0/
70
+ documentation_uri: https://gemdocs.org/gems/numo-liblinear/3.2.0/
71
71
  rubygems_mfa_required: 'true'
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubygems_version: 4.0.3
86
+ rubygems_version: 4.0.13
87
87
  specification_version: 4
88
88
  summary: Numo::Liblinear is a Ruby gem binding to the LIBLINEAR library. Numo::Liblinear
89
89
  makes to use the LIBLINEAR functions with dataset represented by Numo::NArray.