diff --git a/CHANGELOG.md b/CHANGELOG.md index da3c49f2..64cf5258 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [0.7.2](https://github.com/eonu/sequentia/releases/tag/v0.7.2) + +#### Major changes + +- Stop referring to sequences as temporal, as non-temporal sequences can also be used. ([#103](https://github.com/eonu/sequentia/pull/103)) + ## [0.7.1](https://github.com/eonu/sequentia/releases/tag/v0.7.1) #### Major changes diff --git a/lib/sequentia/__init__.py b/lib/sequentia/__init__.py index 77690f66..e7bb45cd 100644 --- a/lib/sequentia/__init__.py +++ b/lib/sequentia/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.7.1' +__version__ = '0.7.2' from .classifiers import * from .preprocessing import * \ No newline at end of file diff --git a/setup.py b/setup.py index fd50677e..f05d38dc 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from __future__ import print_function from setuptools import setup, find_packages -VERSION = '0.7.1' +VERSION = '0.7.2' with open('README.md', 'r') as fh: long_description = fh.read()