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

Commit

Permalink
Bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
capcarr committed May 2, 2017
1 parent 118b9fb commit f328082
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGES.md
Expand Up @@ -3,6 +3,20 @@

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

Version 0.4.0
-------------

Released on May 2nd 2017

- Fixed array indexing with floats (merges #23)
- Allow user to modify SCRs rejection treshold (merges #24)
- Fixed the Scikit-Learn cross-validation module deprecation (closes #18)
- Addd methods to compute mean and meadian of a set of n-dimensional data points
- Added methods to compute the matrix profile
- Added new EMG onset detection algorithms (merges #17)
- Added finite difference method for numerial derivatives
- Fixed inconsistent decibel usage in plotting (closes #16)

Version 0.3.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion biosppy/version.py
Expand Up @@ -9,4 +9,4 @@
:license: BSD 3-clause, see LICENSE for more details.
"""

version = '0.3.1'
version = '0.4.0'
10 changes: 5 additions & 5 deletions docs/conf.py
Expand Up @@ -31,7 +31,7 @@ def __getattr__(cls, name):
'scipy.stats', 'scipy.cluster', 'scipy.cluster.hierarchy',
'scipy.cluster.vq', 'scipy.sparse', 'scipy.spatial',
'scipy.spatial.distance', 'sklearn', 'sklearn.cluster',
'sklearn.grid_search', 'sklearn.externals',
'sklearn.model_selection', 'sklearn.externals',
'matplotlib.gridspec', 'h5py', 'shortuuid', 'bidict', 'svm',
'sksvm']

Expand All @@ -55,7 +55,7 @@ def __getattr__(cls, name):
'sphinx.ext.coverage',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
'sphinx.ext.pngmath',
'sphinx.ext.imgmath',
]

# Napoleon settings
Expand Down Expand Up @@ -85,9 +85,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = '0.3.0'
version = '0.4.0'
# The full version, including alpha/beta/rc tags.
release = '0.3.0'
release = version

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

Expand Down

0 comments on commit f328082

Please sign in to comment.