From 61ea4dd93ba0f121b926a8bbed174a66af40f6d4 Mon Sep 17 00:00:00 2001 From: Carlos Carreiras Date: Mon, 20 Aug 2018 16:37:02 +0100 Subject: [PATCH] Bump version to 0.6.0 --- CHANGES.md | 14 ++++++++++++++ biosppy/__version__.py | 2 +- docs/conf.py | 4 ++-- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 673c2d49..018b2675 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,20 @@ Here you can see the full list of changes between each BioSPPy release. +Version 0.6.0 +------------- + +Released on August 20th 2018 + +- Added reference for BVP onset detection algorithm (closes #36) +- Updated readme file +- New setup.py style +- Added online filtering class in signals.tools +- Added Pearson correlation and RMSE methods in signals.tools +- Added method to compute Welch's power spectrum in signals.tools +- Don't use detrended derivative in signals.eda.kbk_scr (closes #43) +- Various minor changes + Version 0.5.1 ------------- diff --git a/biosppy/__version__.py b/biosppy/__version__.py index e6526c08..f31e9c94 100644 --- a/biosppy/__version__.py +++ b/biosppy/__version__.py @@ -9,5 +9,5 @@ :license: BSD 3-clause, see LICENSE for more details. """ -VERSION = (0, 5, 1) +VERSION = (0, 6, 0) __version__ = '.'.join(map(str, VERSION)) diff --git a/docs/conf.py b/docs/conf.py index e7f8849d..a11ce047 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -77,7 +77,7 @@ def __getattr__(cls, name): # General information about the project. project = 'BioSPPy' -copyright = '2015-2017, Instituto de Telecomunicacoes' +copyright = '2015-2018, Instituto de Telecomunicacoes' author = 'Instituto de Telecomunicacoes' # The version info for the project you're documenting, acts as replacement for @@ -85,7 +85,7 @@ def __getattr__(cls, name): # built documents. # # The short X.Y version. -version = '0.5.1' +version = '0.6.0' # The full version, including alpha/beta/rc tags. release = version