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 +4 -4
- data/CHANGELOG.md +8 -4
- data/ext/numo/liblinear/extconf.rb +0 -14
- data/lib/numo/liblinear/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd0c8f910881911dd12c6106e911c7734b88e57a679bb9a803580242402b7584
|
|
4
|
+
data.tar.gz: 3406136f646003cb660ef8240024671613c1e0e56c4a6dfe5ba2bf04ee06a11a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
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.
|
|
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:
|