Skip to content

Commit b0f328e

Browse files
authored
Minor release 0.6.2 (#215)
* Added release notes * Updated version numbers * Updated release notes * Updated release date.
1 parent b9680d9 commit b0f328e

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# The short X.Y version.
6060
version = '0.6'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '0.6.1'
62+
release = '0.6.2'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

doc/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ To download and install manually, download the latest package from http://pypi.p
7373

7474
Then::
7575

76-
$ tar xzf elephant-0.6.1.tar.gz
77-
$ cd elephant-0.6.1
76+
$ tar xzf elephant-0.6.2.tar.gz
77+
$ cd elephant-0.6.2
7878
$ python setup.py install
7979
8080
or::

doc/release_notes.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@ Release Notes
33
*************
44

55

6+
Elephant 0.6.2 release notes
7+
============================
8+
April 23rd 2019
9+
10+
New functions
11+
-------------
12+
* `signal_processing` module
13+
* New functions to calculate the area under a time series and the derivative of a time series.
14+
15+
Other changes
16+
-------------
17+
* Added support to initialize binned spike train representations with a matrix
18+
* Multiple bug fixes
19+
20+
621
Elephant 0.6.1 release notes
722
============================
823
April 1st 2019

elephant/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
except ImportError:
3232
pass
3333

34-
__version__ = "0.6.1"
34+
__version__ = "0.6.2"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
setup(
4848
name="elephant",
49-
version='0.6.1',
49+
version='0.6.2',
5050
packages=['elephant', 'elephant.test'],
5151
package_data={'elephant': [
5252
os.path.join('current_source_density_src', 'test_data.mat'),

0 commit comments

Comments
 (0)