Skip to content

Commit 07f5720

Browse files
committed
v2.0.0
1 parent a96596b commit 07f5720

File tree

39 files changed

+85
-64
lines changed

39 files changed

+85
-64
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# [[2.0.0](https://github.com/yoshoku/rumale/compare/v1.0.0...v2.0.0)]
2+
3+
**Breaking changes**
4+
5+
## all
6+
7+
- Change the runtime depedency from numo-narray to [numo-narray-alt](https://github.com/yoshoku/numo-narray-alt).
8+
9+
## rumale-linear_model
10+
11+
- Change the runtime depedency from lbfgsb.rb to [numo-optimize](https://github.com/yoshoku/numo-optimize).
12+
13+
## rumale-metric_learning
14+
15+
- Change the runtime depedency from lbfgsb.rb to [numo-optimize](https://github.com/yoshoku/numo-optimize).
16+
17+
[Numo::NArray](https://rubygems.org/gems/numo-narray), a runtime dependency of Rumale, has not had a new release in three years.
18+
For the future development of Rumale, I have decided to fork Numo::NArray to continue its development, including applying bug fixes.
19+
There are no other major changes besides this update to the runtime dependency.
20+
In addition, it is recommended to use [numo-linalg-alt](https://github.com/yoshoku/numo-linalg-alt) if you are using Numo::Linalg with Rumale.
21+
122
# [[1.0.0](https://github.com/yoshoku/rumale/compare/v0.29.0...v1.0.0)]
223
## rumale-core
324
- Add csv gem to runtime dependencies for Ruby 3.4.

bump.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/zsh
22

3-
FROM='0.29.0'
4-
TO='1.0.0'
3+
FROM='1.0.0'
4+
TO='2.0.0'
55

66
for FILENAME in `find . -name 'version.rb'`; do
77
gsed -i -e "s/VERSION\s*=\s*'${FROM}'/VERSION = '${TO}'/" ${FILENAME}

rumale-clustering/lib/rumale/clustering/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ module Rumale
55
# This module consists of classes that implement cluster analysis methods.
66
module Clustering
77
# @!visibility private
8-
VERSION = '1.0.0'
8+
VERSION = '2.0.0'
99
end
1010
end

rumale-clustering/rumale-clustering.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ Gem::Specification.new do |spec|
3636
spec.require_paths = ['lib']
3737

3838
spec.add_dependency 'numo-narray-alt', '~> 0.9.4'
39-
spec.add_dependency 'rumale-core', '~> 1.0.0'
39+
spec.add_dependency 'rumale-core', '~> 2.0.0'
4040
end

rumale-core/lib/rumale/core/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ module Rumale
55
# @!visibility private
66
module Core
77
# @!visibility private
8-
VERSION = '1.0.0'
8+
VERSION = '2.0.0'
99
end
1010
end

rumale-decomposition/lib/rumale/decomposition/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ module Rumale
55
# Module for matrix decomposition algorithms.
66
module Decomposition
77
# @!visibility private
8-
VERSION = '1.0.0'
8+
VERSION = '2.0.0'
99
end
1010
end

rumale-decomposition/rumale-decomposition.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ Gem::Specification.new do |spec|
3434
spec.require_paths = ['lib']
3535

3636
spec.add_dependency 'numo-narray-alt', '~> 0.9.4'
37-
spec.add_dependency 'rumale-core', '~> 1.0.0'
37+
spec.add_dependency 'rumale-core', '~> 2.0.0'
3838
end

rumale-ensemble/lib/rumale/ensemble/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ module Rumale
55
# This module consists of the classes that implement ensemble-based methods.
66
module Ensemble
77
# @!visibility private
8-
VERSION = '1.0.0'
8+
VERSION = '2.0.0'
99
end
1010
end

rumale-ensemble/rumale-ensemble.gemspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Gem::Specification.new do |spec|
3434
spec.require_paths = ['lib']
3535

3636
spec.add_dependency 'numo-narray-alt', '~> 0.9.4'
37-
spec.add_dependency 'rumale-core', '~> 1.0.0'
38-
spec.add_dependency 'rumale-linear_model', '~> 1.0.0'
39-
spec.add_dependency 'rumale-model_selection', '~> 1.0.0'
40-
spec.add_dependency 'rumale-preprocessing', '~> 1.0.0'
41-
spec.add_dependency 'rumale-tree', '~> 1.0.0'
37+
spec.add_dependency 'rumale-core', '~> 2.0.0'
38+
spec.add_dependency 'rumale-linear_model', '~> 2.0.0'
39+
spec.add_dependency 'rumale-model_selection', '~> 2.0.0'
40+
spec.add_dependency 'rumale-preprocessing', '~> 2.0.0'
41+
spec.add_dependency 'rumale-tree', '~> 2.0.0'
4242
end

rumale-evaluation_measure/lib/rumale/evaluation_measure/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ module Rumale
55
# This module consists of the classes for model evaluation.
66
module EvaluationMeasure
77
# @!visibility private
8-
VERSION = '1.0.0'
8+
VERSION = '2.0.0'
99
end
1010
end

0 commit comments

Comments
 (0)