From d1ca3f2e16a68e6ed1f39e50461c7015ec80bdbd Mon Sep 17 00:00:00 2001 From: Carlos Carreiras Date: Wed, 6 Jan 2016 09:51:14 +0000 Subject: [PATCH] Prepare v0.2.1 release. --- CHANGES | 7 +++++++ biosppy/version.py | 2 +- docs/conf.py | 4 ++-- setup.py | 5 ++--- 4 files changed, 12 insertions(+), 6 deletions(-) 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__