diff --git a/CHANGES b/CHANGES index 13cb7ef2..23ad1b45 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,13 @@ Here you can see the full list of changes between each BioSPPy release. +Version 0.2.1 +------------- + +Released on January 6th 2016 + +- Fixes incorrect BVP filter parameters (closes #2) + Version 0.2.0 ------------- diff --git a/biosppy/version.py b/biosppy/version.py index 3153e434..d38860f3 100644 --- a/biosppy/version.py +++ b/biosppy/version.py @@ -9,4 +9,4 @@ :license: BSD 3-clause, see LICENSE for more details. """ -version = '0.2.0' +version = '0.2.1' diff --git a/docs/conf.py b/docs/conf.py index af51a576..0852a926 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -85,9 +85,9 @@ def __getattr__(cls, name): # built documents. # # The short X.Y version. -version = '0.2.0' +version = '0.2.1' # The full version, including alpha/beta/rc tags. -release = '0.2.0' +release = '0.2.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index c150de14..c9fb0212 100644 --- a/setup.py +++ b/setup.py @@ -13,17 +13,16 @@ from setuptools import find_packages, setup - def read(*paths): """Build a file path from *paths and return the contents.""" - + with open(os.path.join(*paths), 'r') as fid: return fid.read() def get_version(): """Get the module version""" - + return biosppy.__version__