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

Commit f328082

Browse files
committed
Bump version to 0.4.0
1 parent 118b9fb commit f328082

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
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.4.0
7+
-------------
8+
9+
Released on May 2nd 2017
10+
11+
- Fixed array indexing with floats (merges #23)
12+
- Allow user to modify SCRs rejection treshold (merges #24)
13+
- Fixed the Scikit-Learn cross-validation module deprecation (closes #18)
14+
- Addd methods to compute mean and meadian of a set of n-dimensional data points
15+
- Added methods to compute the matrix profile
16+
- Added new EMG onset detection algorithms (merges #17)
17+
- Added finite difference method for numerial derivatives
18+
- Fixed inconsistent decibel usage in plotting (closes #16)
19+
620
Version 0.3.0
721
-------------
822

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.3.1'
12+
version = '0.4.0'

docs/conf.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __getattr__(cls, name):
3131
'scipy.stats', 'scipy.cluster', 'scipy.cluster.hierarchy',
3232
'scipy.cluster.vq', 'scipy.sparse', 'scipy.spatial',
3333
'scipy.spatial.distance', 'sklearn', 'sklearn.cluster',
34-
'sklearn.grid_search', 'sklearn.externals',
34+
'sklearn.model_selection', 'sklearn.externals',
3535
'matplotlib.gridspec', 'h5py', 'shortuuid', 'bidict', 'svm',
3636
'sksvm']
3737

@@ -55,7 +55,7 @@ def __getattr__(cls, name):
5555
'sphinx.ext.coverage',
5656
'sphinx.ext.viewcode',
5757
'sphinx.ext.napoleon',
58-
'sphinx.ext.pngmath',
58+
'sphinx.ext.imgmath',
5959
]
6060

6161
# Napoleon settings
@@ -85,9 +85,9 @@ def __getattr__(cls, name):
8585
# built documents.
8686
#
8787
# The short X.Y version.
88-
version = '0.3.0'
88+
version = '0.4.0'
8989
# The full version, including alpha/beta/rc tags.
90-
release = '0.3.0'
90+
release = version
9191

9292
# The language for content autogenerated by Sphinx. Refer to documentation
9393
# for a list of supported languages.
@@ -297,7 +297,7 @@ def __getattr__(cls, name):
297297
# dir menu entry, description, category)
298298
texinfo_documents = [
299299
(master_doc, 'BioSPPy', 'BioSPPy Documentation',
300-
author, 'BioSPPy', 'One line description of project.',
300+
author, 'BioSPPy', 'Biosignal Processing in Python.',
301301
'Miscellaneous'),
302302
]
303303

0 commit comments

Comments
 (0)