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

Commit d1ca3f2

Browse files
committed
Prepare v0.2.1 release.
1 parent 9df67b4 commit d1ca3f2

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGES

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

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

6+
Version 0.2.1
7+
-------------
8+
9+
Released on January 6th 2016
10+
11+
- Fixes incorrect BVP filter parameters (closes #2)
12+
613
Version 0.2.0
714
-------------
815

biosppy/version.py

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

12-
version = '0.2.0'
12+
version = '0.2.1'

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ def __getattr__(cls, name):
8585
# built documents.
8686
#
8787
# The short X.Y version.
88-
version = '0.2.0'
88+
version = '0.2.1'
8989
# The full version, including alpha/beta/rc tags.
90-
release = '0.2.0'
90+
release = '0.2.1'
9191

9292
# The language for content autogenerated by Sphinx. Refer to documentation
9393
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,16 @@
1313
from setuptools import find_packages, setup
1414

1515

16-
1716
def read(*paths):
1817
"""Build a file path from *paths and return the contents."""
19-
18+
2019
with open(os.path.join(*paths), 'r') as fid:
2120
return fid.read()
2221

2322

2423
def get_version():
2524
"""Get the module version"""
26-
25+
2726
return biosppy.__version__
2827

2928

0 commit comments

Comments
 (0)