numo-liblinear 3.1.0 → 3.1.1

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: fd0c8f910881911dd12c6106e911c7734b88e57a679bb9a803580242402b7584
4
+ data.tar.gz: 3406136f646003cb660ef8240024671613c1e0e56c4a6dfe5ba2bf04ee06a11a
5
5
  SHA512:
6
- metadata.gz: 3229e72e815c2a5cabecde251e831e80bf162c31c0961cf8bdfd4c96ac2c3a4ac8a58b7889ddb5a56042f995c68d5d597d1e9cb62316b088dc635597ab858f2d
7
- data.tar.gz: '00578ba1f6a1bd22dc0e7925f8feb97eba6a2af0a7633f72da288a9268c50e182611fca04ece54bdc21ff1659f28f267ad7f86edfa045a90ed3c221c1d71ef47'
6
+ metadata.gz: 611c4eda7ebce7f60eb44d769223343243b7359aec140c4afe55ec951a880ea6ebbd6c28f0a299baca650963af8aae7df9ce55564110fd295a110a35c67dfc31
7
+ data.tar.gz: a0b26fe3cddbddd523c85867efda2c2d92bc07b5d73658ed307a68ee24efdc11ba324a058d85125fdbcaac80db2b6d4371e1f5e530b0a28a9b99b0505431bd11
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
+ # [[3.1.1](https://github.com/yoshoku/numo-liblinear/compare/v3.1.0...v3.1.1)] - 2026-02-17
2
+
3
+ - Remove unnecessary C++ shared library loading check from native extensions build step.
4
+
1
5
  # [[3.1.0](https://github.com/yoshoku/numo-liblinear/compare/v3.0.1...v3.1.0)] - 2026-02-06
2
6
 
3
- - relax numo-narray-alt version constraint to >= 0.9.10, < 0.11.0.
7
+ - Relax numo-narray-alt version constraint to >= 0.9.10, < 0.11.0.
4
8
 
5
9
  # [[3.0.1](https://github.com/yoshoku/numo-liblinear/compare/v3.0.0...v3.0.1)] - 2025-11-19
6
10
 
@@ -9,7 +13,7 @@
9
13
 
10
14
  # [[3.0.0](https://github.com/yoshoku/numo-liblinear/compare/v2.4.0...v3.0.0)] - 2025-10-01
11
15
 
12
- **Breaking chage**
16
+ **Breaking change**
13
17
 
14
18
  - Change dependency from numo-narray to [numo-narray-alt](https://github.com/yoshoku/numo-narray-alt).
15
19
 
@@ -35,7 +39,7 @@
35
39
 
36
40
  # 2.0.0
37
41
  - Redesign native extension codes.
38
- - Change not ot use git submodule for LIBLINEAR codes bundle.
42
+ - Change not to use git submodule for LIBLINEAR codes bundle.
39
43
  - Introduce conventional commits.
40
44
 
41
45
  # 1.2.2
@@ -65,7 +69,7 @@
65
69
  There is no need to install LIBLINEAR in advance to use Numo::LIBLINEAR.
66
70
 
67
71
  # 0.5.0
68
- - Fix to use LIBLINEAR sparce vector representation for internal processing.
72
+ - Fix to use LIBLINEAR sparse vector representation for internal processing.
69
73
 
70
74
  # 0.4.0
71
75
  - 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.1.1'
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.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
@@ -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.1.1/
71
71
  rubygems_mfa_required: 'true'
72
72
  rdoc_options: []
73
73
  require_paths: