From f1a80ae0e3c627e7d0236ad1be6dfabd6f9e0eea Mon Sep 17 00:00:00 2001 From: Edwin Onuonga Date: Thu, 7 Jan 2021 15:12:41 +0400 Subject: [PATCH] =?UTF-8?q?[release]=200.10.2=20=F0=9F=8E=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 14 ++++++++++++++ lib/sequentia/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ace06b6e..e292e9a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [0.10.2](https://github.com/eonu/sequentia/releases/tag/v0.10.2) + +#### Major changes + +- Add support for dependent feature warping (addresses [#124](https://github.com/eonu/sequentia/pull/124)). ([#135](https://github.com/eonu/sequentia/pull/135)) +- Add multi-processed predictions for `HMMClassifier` (addresses [#121](https://github.com/eonu/sequentia/pull/121)). ([#136](https://github.com/eonu/sequentia/pull/136)) +- Re-order `predict()` and `evaluate()` arguments. ([#138](https://github.com/eonu/sequentia/pull/138)) + +#### Minor changes + +- Add `original_labels` documentation to `KNNClassifier`. ([#133](https://github.com/eonu/sequentia/pull/133)) +- Simplify `GMMHMM` documentation. ([#134](https://github.com/eonu/sequentia/pull/134)) +- Fix posterior comment in `classifier.svg`. ([#137](https://github.com/eonu/sequentia/pull/137)) + ## [0.10.1](https://github.com/eonu/sequentia/releases/tag/v0.10.1) #### Minor changes diff --git a/lib/sequentia/__init__.py b/lib/sequentia/__init__.py index e7c389e7..8a295646 100644 --- a/lib/sequentia/__init__.py +++ b/lib/sequentia/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.10.1' +__version__ = '0.10.2' from .classifiers import * from .preprocessing import * \ No newline at end of file diff --git a/setup.py b/setup.py index aa862eae..063e68bc 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ 'joblib>=0.14,<1' ] -VERSION = '0.10.1' +VERSION = '0.10.2' with open('README.md', 'r') as fh: long_description = fh.read()