Skip to content

Commit 009e80f

Browse files
authored
Changes for compatibility release 0.6.1 (#204)
* Changes for compatibility release 0.6.1 * Added release notes
1 parent d865e0c commit 009e80f

File tree

8 files changed

+31
-10
lines changed

8 files changed

+31
-10
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2018, Elephant authors and contributors
1+
Copyright (c) 2014-2019, Elephant authors and contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ Code status
1919
:target: https://readthedocs.org/projects/elephant/?badge=latest
2020
:alt: Documentation Status
2121

22-
:copyright: Copyright 2014-2018 by the Elephant team, see AUTHORS.txt.
22+
:copyright: Copyright 2014-2019 by the Elephant team, see AUTHORS.txt.
2323
:license: Modified BSD License, see LICENSE.txt for details.

doc/authors.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ contribution, and may not be the current affiliation of a contributor.
1010

1111
* Alper Yegenoglu [1]
1212
* Andrew Davison [2]
13+
* Björn Müller [1]
1314
* Detlef Holstein [2]
1415
* Eilif Muller [3, 4]
1516
* Emiliano Torre [1]
1617
* Espen Hagen [1]
18+
* Jeffrey Gill
1719
* Jan Gosmann [6, 8]
1820
* Julia Sprenger [1]
1921
* Junji Ito [1]

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# General information about the project.
5151
project = u'Elephant'
5252
authors = u'Elephant authors and contributors'
53-
copyright = u'2014-2018, ' + authors
53+
copyright = u'2014-2019, ' + authors
5454

5555
# The version info for the project you're documenting, acts as replacement for
5656
# |version| and |release|, also used in various other places throughout the
@@ -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.0'
62+
release = '0.6.1'
6363

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

doc/install.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The following packages are required to use Elephant:
1515
* numpy_ >= 1.8.2
1616
* scipy_ >= 0.14.0
1717
* quantities_ >= 0.10.1
18-
* neo_ >= 0.5.0
18+
* neo_ >= 0.7.0, <0.8.0
1919

2020
The following packages are optional in order to run certain parts of Elephant:
2121
* For using the pandas_bridge module:
@@ -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.0.tar.gz
77-
$ cd elephant-0.6.0
76+
$ tar xzf elephant-0.6.1.tar.gz
77+
$ cd elephant-0.6.1
7878
$ python setup.py install
7979
8080
or::

doc/release_notes.rst

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

5+
6+
Elephant 0.6.1 release notes
7+
============================
8+
April 1st 2019
9+
10+
New functions
11+
-------------
12+
* `signal_processing` module
13+
* New function to calculate the cross-correlation function for analog signals.
14+
* `spade` module
15+
* Spatio-temporal spike pattern detection now includes the option to assess significance also based on time-lags of patterns, in addition to patterns size and frequency (referred to as 3D pattern spectrum).
16+
17+
Other changes
18+
-------------
19+
* This release fixes a number of compatibility issues in relation to API breaking changes in the Neo library.
20+
* Fixed error in STTC calculation (spike time tiling coefficient)
21+
* Minor bug fixes
22+
23+
524
Elephant 0.6.0 release notes
625
============================
726
October 12th 2018

elephant/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
Elephant is a package for the analysis of neurophysiology data, based on Neo.
44
5-
:copyright: Copyright 2014-2018 by the Elephant team, see AUTHORS.txt.
5+
:copyright: Copyright 2014-2019 by the Elephant team, see AUTHORS.txt.
66
:license: Modified BSD, see LICENSE.txt for details.
77
"""
88

@@ -31,4 +31,4 @@
3131
except ImportError:
3232
pass
3333

34-
__version__ = "0.6.0"
34+
__version__ = "0.6.1"

setup.py

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

3838
setup(
3939
name="elephant",
40-
version='0.6.0',
40+
version='0.6.1',
4141
packages=['elephant', 'elephant.test'],
4242
package_data={'elephant': [
4343
os.path.join('current_source_density_src', 'test_data.mat'),

0 commit comments

Comments
 (0)