Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Commit 61ea4dd

Browse files
committed
Bump version to 0.6.0
1 parent bb42994 commit 61ea4dd

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGES.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33

44
Here you can see the full list of changes between each BioSPPy release.
55

6+
Version 0.6.0
7+
-------------
8+
9+
Released on August 20th 2018
10+
11+
- Added reference for BVP onset detection algorithm (closes #36)
12+
- Updated readme file
13+
- New setup.py style
14+
- Added online filtering class in signals.tools
15+
- Added Pearson correlation and RMSE methods in signals.tools
16+
- Added method to compute Welch's power spectrum in signals.tools
17+
- Don't use detrended derivative in signals.eda.kbk_scr (closes #43)
18+
- Various minor changes
19+
620
Version 0.5.1
721
-------------
822

biosppy/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
:license: BSD 3-clause, see LICENSE for more details.
1010
"""
1111

12-
VERSION = (0, 5, 1)
12+
VERSION = (0, 6, 0)
1313
__version__ = '.'.join(map(str, VERSION))

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ def __getattr__(cls, name):
7777

7878
# General information about the project.
7979
project = 'BioSPPy'
80-
copyright = '2015-2017, Instituto de Telecomunicacoes'
80+
copyright = '2015-2018, Instituto de Telecomunicacoes'
8181
author = 'Instituto de Telecomunicacoes'
8282

8383
# The version info for the project you're documenting, acts as replacement for
8484
# |version| and |release|, also used in various other places throughout the
8585
# built documents.
8686
#
8787
# The short X.Y version.
88-
version = '0.5.1'
88+
version = '0.6.0'
8989
# The full version, including alpha/beta/rc tags.
9090
release = version
9191

0 commit comments

Comments
 (0)