Skip to content

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgill86 authored Jan 16, 2021
2 parents 0630b4c + 08739a8 commit 9045dd9
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include LICENSE
include README.md
include README.rst
1 change: 1 addition & 0 deletions doc/releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Release Notes
.. toctree::
:maxdepth: 1

releases/1.4.0.rst
releases/1.3.1.rst
releases/1.3.0.rst
releases/1.2.3.rst
Expand Down
63 changes: 63 additions & 0 deletions doc/releases/1.4.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
Version 1.4.0
-------------

2021-01-16

Epoch encoder enhancements
..........................

The epoch encoder received major improvements in functionality, appearance, and
performance.

* Reorganize EpochEncoder controls to reduce crowding
(:pr:`113`, :pr:`108`)

* Add editable fields and row buttons to EpochEncoder table
(:pr:`103`, :pr:`110`, :pr:`111`, :pr:`112`, :pr:`131`)

* Add undo/redo functionality to EpochEncoder
(:pr:`118`, :pr:`119`, :pr:`121`)

* Allow new EpochEncoder labels to be created on-the-fly
(:pr:`105`, :pr:`127`)

* Display EpochEncoder shortcut keys as y-axis tick mark labels
(:pr:`104`)

* Dramatically improve EpochEncoder performance when there are many epochs
(:pr:`120`)

Bug fixes
.........

* Allow standalone app to open multiple files, each in independent windows
(:pr:`122`, :pr:`123`)

* Fix signal grouping in ``get_sources_from_neo_rawio()`` for Neo 0.9.0
(:pr:`117`)

* Fix ``'method' object is not connected`` TimeFreqViewer error for pyqtgraph
0.11.0
(:pr:`124`, :pr:`126`)

* Fix TraceViewer scatter points changing color randomly with pyqtgraph 0.11.1
(:pr:`132`, :pr:`133`)

* Fix bounds of EpochEncoder start/stop spin boxes
(:pr:`106`, :pr:`107`)

* Fix EpochEncoder start/stop spin box values not immediately updating when
"Set start"/"Set stop" buttons are pressed on macOS
(:pr:`115`, :pr:`129`)

* Prevent overzealous spin box height correction in pyqtgraph 0.11.0
(:pr:`114`)

Documentation
.............

* Update docs style and content
(:pr:`128`, :pr:`134`, :pr:`135`)

* Cite eNeuro paper
(:pr:`125`)
2 changes: 1 addition & 1 deletion ephyviewer/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '1.3.2.dev'
version = '1.4.0'
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# Read in the README to serve as the long_description, which will be presented
# on pypi.org as the project description.
with open('README.md', 'r') as f:
with open('README.rst', 'r') as f:
long_description = f.read()

with open('ephyviewer/version.py') as f:
Expand Down Expand Up @@ -40,6 +40,7 @@
'Documentation': 'https://ephyviewer.readthedocs.io/en/latest/',
'Source code': 'https://github.com/NeuralEnsemble/ephyviewer/',
'Bug tracker': 'https://github.com/NeuralEnsemble/ephyviewer/issues',
'Change log': 'https://ephyviewer.readthedocs.io/en/latest/releasenotes.html',
},
classifiers = [
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit 9045dd9

Please sign in to comment.