🆙 Bump up version number to 0.22.2

This commit is contained in:
yoshoku 2021-01-10 13:06:02 +09:00
parent b06d09e911
commit 2167d9323b
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# 0.22.2
- Add classifier and regressor classes for stacking method.
- [StackingClassifier](https://yoshoku.github.io/rumale/doc/Rumale/Ensemble/StackingClassifier.html)
- [StackingRegressor](https://yoshoku.github.io/rumale/doc/Rumale/Ensemble/StackingRegressor.html)
- Refactor some codes with Rubocop.
# 0.22.1
- Add transfomer class for MLKR, that implements Metric Learning for Kernel Regression.
- Add transfomer class for [MLKR](https://yoshoku.github.io/rumale/doc/Rumale/MetricLearning/MLKR.html), that implements Metric Learning for Kernel Regression.
- Refactor NeighbourhoodComponentAnalysis.
- Update API documentation.

View File

@ -3,5 +3,5 @@
# Rumale is a machine learning library in Ruby.
module Rumale
# The version of Rumale you are using.
VERSION = '0.22.1'
VERSION = '0.22.2'
end