Skip to content

Commit

Permalink
Release v0.6.3 (NeuralEnsemble#240)
Browse files Browse the repository at this point in the history
* Release v0.6.3

* Update doc/reference/waveform_features.rst

Co-Authored-By: Michael Denker <m.denker@fz-juelich.de>
  • Loading branch information
dizcza and mdenker committed Jul 22, 2019
1 parent c013e39 commit 6fd3a5b
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 6 deletions.
6 changes: 3 additions & 3 deletions doc/developers_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -175,17 +175,17 @@ Python 2.7 and 3.2-3.5.


Making a release (maintainers only)
----------------
-----------------------------------

.. TODO: discuss branching/tagging policy.
.. Add a section in /doc/releases/<version>.rst for the release.
.. Add a section in /doc/release_notes.rst for the release.
1. Increment the Elephant package version in :file:`elephant/VERSION`, if necessary.

2. Check that the copyright statement (in :file:`LICENCE.txt`, :file:`README.md`, and :file:`doc/conf.py`) is correct.

3. If there is a new module do not forget to add the modulename to the :file:`doc/module.rst` and make a file with a short description in :file:`doc/reference/<modulename>.rst`.
3. If there is a new module do not forget to add the modulename to the :file:`doc/modules.rst` and make a file with a short description in :file:`doc/reference/<modulename>.rst`.

To build a source package::

Expand Down
2 changes: 1 addition & 1 deletion doc/modules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ Function Reference by Module
reference/sta
reference/statistics
reference/unitary_event_analysis

reference/waveform_features
6 changes: 6 additions & 0 deletions doc/reference/waveform_features.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
=====================================================================================================
`waveform_features` - Functions for computing waveform features like signal-to-noise ratio, etc.
=====================================================================================================

.. automodule:: elephant.waveform_features
:members:
22 changes: 22 additions & 0 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@
Release Notes
*************

Elephant 0.6.3 release notes
============================
July 22nd 2019

The release v0.6.3 is mostly about improving maintenance.

New functions
-------------
* `waveform_features` module
* Waveform signal-to-noise ratio (https://github.com/NeuralEnsemble/elephant/pull/219).
* Added support for Butterworth `sosfiltfilt` - numerically stable (in particular, higher order) filtering (https://github.com/NeuralEnsemble/elephant/pull/234).

Buf fixes
---------
* Fixed neo version typo in requirements file (https://github.com/NeuralEnsemble/elephant/pull/218)
* Fixed broken docs (https://github.com/NeuralEnsemble/elephant/pull/230, https://github.com/NeuralEnsemble/elephant/pull/232)
* Fixed issue with 32-bit arch (https://github.com/NeuralEnsemble/elephant/pull/229)

Other changes
-------------
* Added issue templates (https://github.com/NeuralEnsemble/elephant/pull/226)
* Single VERSION file (https://github.com/NeuralEnsemble/elephant/pull/231)

Elephant 0.6.2 release notes
============================
Expand Down
2 changes: 1 addition & 1 deletion elephant/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.2
0.6.3
2 changes: 1 addition & 1 deletion elephant/cubic.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def _kstat(data):
Returns
-----
kappa : numpy.ndarray
moments : list
The first three unbiased cumulants of the population count
'''
if len(data) == 0:
Expand Down

0 comments on commit 6fd3a5b

Please sign in to comment.