Skip to content

Commit 6fd3a5b

Browse files
dizczamdenker
andcommitted
Release v0.6.3 (#240)
* Release v0.6.3 * Update doc/reference/waveform_features.rst Co-Authored-By: Michael Denker <[email protected]>
1 parent c013e39 commit 6fd3a5b

File tree

6 files changed

+34
-6
lines changed

6 files changed

+34
-6
lines changed

doc/developers_guide.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,17 +175,17 @@ Python 2.7 and 3.2-3.5.
175175

176176

177177
Making a release (maintainers only)
178-
----------------
178+
-----------------------------------
179179

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

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

188-
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`.
188+
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`.
189189

190190
To build a source package::
191191

doc/modules.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ Function Reference by Module
2323
reference/sta
2424
reference/statistics
2525
reference/unitary_event_analysis
26-
26+
reference/waveform_features
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
=====================================================================================================
2+
`waveform_features` - Functions for computing waveform features like signal-to-noise ratio, etc.
3+
=====================================================================================================
4+
5+
.. automodule:: elephant.waveform_features
6+
:members:

doc/release_notes.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22
Release Notes
33
*************
44

5+
Elephant 0.6.3 release notes
6+
============================
7+
July 22nd 2019
8+
9+
The release v0.6.3 is mostly about improving maintenance.
10+
11+
New functions
12+
-------------
13+
* `waveform_features` module
14+
* Waveform signal-to-noise ratio (https://github.com/NeuralEnsemble/elephant/pull/219).
15+
* Added support for Butterworth `sosfiltfilt` - numerically stable (in particular, higher order) filtering (https://github.com/NeuralEnsemble/elephant/pull/234).
16+
17+
Buf fixes
18+
---------
19+
* Fixed neo version typo in requirements file (https://github.com/NeuralEnsemble/elephant/pull/218)
20+
* Fixed broken docs (https://github.com/NeuralEnsemble/elephant/pull/230, https://github.com/NeuralEnsemble/elephant/pull/232)
21+
* Fixed issue with 32-bit arch (https://github.com/NeuralEnsemble/elephant/pull/229)
22+
23+
Other changes
24+
-------------
25+
* Added issue templates (https://github.com/NeuralEnsemble/elephant/pull/226)
26+
* Single VERSION file (https://github.com/NeuralEnsemble/elephant/pull/231)
527

628
Elephant 0.6.2 release notes
729
============================

elephant/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.2
1+
0.6.3

elephant/cubic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def _kstat(data):
203203
204204
Returns
205205
-----
206-
kappa : numpy.ndarray
206+
moments : list
207207
The first three unbiased cumulants of the population count
208208
'''
209209
if len(data) == 0:

0 commit comments

Comments
 (0)