Skip to content

Commit e3e7ef9

Browse files
committed
v2.0.2
1 parent 1366abf commit e3e7ef9

File tree

38 files changed

+72
-62
lines changed

38 files changed

+72
-62
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# [[2.0.2](https://github.com/yoshoku/rumale/compare/v2.0.1...v2.0.2)]
2+
## all
3+
4+
- Set the required version of numo-narray-alt to 0.9.10 or higher.
5+
- Change require statement to explicitly load numo/narray/alt.
6+
7+
## rumale-clustering and rumale-metric_learning
8+
9+
- Set the required version of numo-optimize to 0.2.2 or higher.
10+
111
# [[2.0.1](https://github.com/yoshoku/rumale/compare/v2.0.0...v2.0.1)]
212
## rumale-naive_bayes
313
- Fix SystemStackError that occurred in MultinomialNB when given large sample sizes: [#51](https://github.com/yoshoku/rumale/pull/51)

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 = '2.0.1'
8+
VERSION = '2.0.2'
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.10'
39-
spec.add_dependency 'rumale-core', '~> 2.0.1'
39+
spec.add_dependency 'rumale-core', '~> 2.0.2'
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 = '2.0.1'
8+
VERSION = '2.0.2'
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 = '2.0.1'
8+
VERSION = '2.0.2'
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.10'
37-
spec.add_dependency 'rumale-core', '~> 2.0.1'
37+
spec.add_dependency 'rumale-core', '~> 2.0.2'
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 = '2.0.1'
8+
VERSION = '2.0.2'
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.10'
37-
spec.add_dependency 'rumale-core', '~> 2.0.1'
38-
spec.add_dependency 'rumale-linear_model', '~> 2.0.1'
39-
spec.add_dependency 'rumale-model_selection', '~> 2.0.1'
40-
spec.add_dependency 'rumale-preprocessing', '~> 2.0.1'
41-
spec.add_dependency 'rumale-tree', '~> 2.0.1'
37+
spec.add_dependency 'rumale-core', '~> 2.0.2'
38+
spec.add_dependency 'rumale-linear_model', '~> 2.0.2'
39+
spec.add_dependency 'rumale-model_selection', '~> 2.0.2'
40+
spec.add_dependency 'rumale-preprocessing', '~> 2.0.2'
41+
spec.add_dependency 'rumale-tree', '~> 2.0.2'
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 = '2.0.1'
8+
VERSION = '2.0.2'
99
end
1010
end

rumale-evaluation_measure/rumale-evaluation_measure.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.10'
37-
spec.add_dependency 'rumale-core', '~> 2.0.1'
37+
spec.add_dependency 'rumale-core', '~> 2.0.2'
3838
end

0 commit comments

Comments
 (0)