From 1fba3e86f8784d4dddc32b2a4fb01f79a07b5cf0 Mon Sep 17 00:00:00 2001 From: yoshoku Date: Sat, 20 Jun 2020 14:27:49 +0900 Subject: [PATCH] :up: Bump up version number to 0.19.2 --- CHANGELOG.md | 5 +++++ lib/rumale/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43851d63..17f768f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.19.2 +- Fix L2Normalizer to avoid zero divide. +- Add preprocssing class for [L1Normalizer](https://yoshoku.github.io/rumale/doc/Rumale/Preprocessing/L1Normalizer.html). +- Add transformer class for [TfidfTransformer](https://yoshoku.github.io/rumale/doc/Rumale/FeatureExtraction/TfidfTransformer.html). + # 0.19.1 - Add cluster analysis class for [mini-batch K-Means](https://yoshoku.github.io/rumale/doc/Rumale/Clustering/MiniBatchKMeans.html). - Fix some typos. diff --git a/lib/rumale/version.rb b/lib/rumale/version.rb index 31fb5f00..6c1c307a 100644 --- a/lib/rumale/version.rb +++ b/lib/rumale/version.rb @@ -3,5 +3,5 @@ # Rumale is a machine learning library in Ruby. module Rumale # The version of Rumale you are using. - VERSION = '0.19.1' + VERSION = '0.19.2' end