Skip to content

Commit

Permalink
[release] 0.10.2 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
eonu committed Jan 7, 2021
1 parent e7f15a0 commit f1a80ae
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/sequentia/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.10.1'
__version__ = '0.10.2'

from .classifiers import *
from .preprocessing import *
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit f1a80ae

Please sign in to comment.