Skip to content

Commit

Permalink
Merge pull request #51 from alperyeg/feature/release02
Browse files Browse the repository at this point in the history
updated documentation for 0.2 release
  • Loading branch information
apdavison committed Sep 22, 2015
2 parents 370e558 + 69630a4 commit 8341460
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 7 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.1.0'
release = '0.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 1 addition & 0 deletions doc/index.rst
Expand Up @@ -24,6 +24,7 @@ Table of Contents
modules
developers_guide
authors
release_notes



Expand Down
6 changes: 3 additions & 3 deletions doc/install.rst
Expand Up @@ -74,8 +74,8 @@ To download and install manually, download the latest package from http://pypi.p

Then::

$ tar xzf elephant-0.1.tar.gz
$ cd elephant-0.1
$ tar xzf elephant-0.2.0.tar.gz
$ cd elephant-0.2.0
$ python setup.py install
or::
Expand Down Expand Up @@ -105,4 +105,4 @@ To install the latest version of Elephant from the Git repository::
.. _`virtualenv`: https://virtualenv.pypa.io/en/latest/
.. _`this snapshot`: https://github.com/NeuralEnsemble/python-neo/archive/apibreak.zip
.. _Anaconda: http://continuum.io/downloads
.. _`Conda environment`: http://conda.pydata.org/docs/faq.html#creating-new-environments
.. _`Conda environment`: http://conda.pydata.org/docs/faq.html#creating-new-environments
28 changes: 28 additions & 0 deletions doc/release_notes.rst
@@ -0,0 +1,28 @@
*************
Release Notes
*************

Elephant 0.2.0 release notes
==========================
September 22nd 2015

Welcome to the 0.2.0 release of Elephant!

New functions
=============

* Added covariance function **covariance()** in the `spike_train_correlation` module
* Added complexity pdf **complexity_pdf()** in the `statistics` module
* Added spike train extraction from analog signals via threshold detection the in `spike_train_generation` module
* Added **coherence()** function for analog signals in the `spectral` module
* Added **Cumulant Based Inference for higher-order of Correlation (CuBIC)** in the `cubic` module for correlation analysis of parallel recorded spike trains

API changes
===========
* **Optimized kernel bandwidth** in `rate_estimation` function: Calculates the optimized kernel width when the paramter kernel width is specified as `auto`

Other changes
=============
* **Optimized creation of sparse matrices**: The creation speed of the sparse matrix inside the `BinnedSpikeTrain` class is optimized
* Added **Izhikevich neuron simulator** in the `make_spike_extraction_test_data` module
* Minor improvements to the test and continous integration infrastructure
2 changes: 1 addition & 1 deletion elephant/__init__.py
Expand Up @@ -21,4 +21,4 @@
except ImportError:
pass

__version__ = "0.1.0"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -14,7 +14,7 @@

setup(
name="elephant",
version='0.1.0',
version='0.2.0',
packages=['elephant', 'elephant.test'],
install_requires=install_requires,
extras_require=extras_require,
Expand Down

0 comments on commit 8341460

Please sign in to comment.