Skip to content

Commit

Permalink
[release] 0.6.1 馃帀 (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
eonu committed Jan 16, 2020
1 parent 4b9ef79 commit 651ea85
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
## [0.6.1](https://github.com/eonu/sequentia/releases/tag/v0.6.1)

#### Major changes

- Remove strict requirement of Numpy arrays being two-dimensional by using `numpy.atleast_2d` to convert one-dimensional arrays into 2D. ([#70](https://github.com/eonu/sequentia/pull/70))

#### Minor changes

- As the HMM classifier is not a true ensemble of HMMs (since each HMM doesn't really contribute to the classification), it is no longer referred to as an ensemble. ([#69](https://github.com/eonu/sequentia/pull/69))

## [0.6.0](https://github.com/eonu/sequentia/releases/tag/v0.6.0)

#### Major changes
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -24,7 +24,7 @@
author = 'Edwin Onuonga'

# The full version, including alpha/beta/rc tags
release = '0.6.0'
release = '0.6.1'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@
from __future__ import print_function
from setuptools import setup, find_packages

VERSION = '0.6.0'
VERSION = '0.6.1'

with open('README.md', 'r') as fh:
long_description = fh.read()
Expand Down

0 comments on commit 651ea85

Please sign in to comment.