Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.6.3 #240

Merged
merged 2 commits into from
Jul 22, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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` - Util functions for computing waveform features like signal-to-noise ratio, etc.
dizcza marked this conversation as resolved.
Show resolved Hide resolved
=====================================================================================================

.. 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).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I very much like the explicit mentioning of the related PRs!

* 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