Skip to content

Commit

Permalink
Release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgill86 committed Mar 15, 2020
2 parents 5b03f45 + 7a22395 commit f77a919
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/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.1
releases/1.4.0
releases/1.3.0
releases/1.2.1
Expand Down
45 changes: 45 additions & 0 deletions docs/releases/1.4.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
.. _v1.4.1:

neurotic 1.4.1
==============

2020-03-15

Improvements
------------

* Add ``neurotic_version`` parameter to metadata
(:pr:`247`)

* Revised and added new example datasets
(:pr:`250`, :pr:`251`)

Bug fixes
---------

* Fix broken import of Neo's ``generate_one_simple_block`` in example notebook
(:pr:`253`)

* Fix default font size determination in scripts and Jupyter notebooks
(:pr:`249`)

Other changes
-------------

* Make "large" UI scale larger and "huge" UI scale huger
(:pr:`244`)

* Scale loading message with other fonts
(:pr:`245`)

* Address numpy FutureWarning when epoch list is empty
(:pr:`248`)

Documentation
-------------

* Add project acronym to package description, app, and docs
(:pr:`252`)

* Building of standalone installers is now automated
(:pr:`254`)
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
# Change version number here, not in neurotic/version.py, which is generated
# by this script. Try to follow recommended versioning guidelines at semver.org.
MAJOR = 1 # increment for backwards-incompatible changes
MINOR = 5 # increment for backwards-compatible feature additions
MICRO = 0 # increment for backwards-compatible bug fixes
IS_RELEASED = False # determines whether version will be marked as development
MINOR = 4 # increment for backwards-compatible feature additions
MICRO = 1 # increment for backwards-compatible bug fixes
IS_RELEASED = True # determines whether version will be marked as development
VERSION = f'{MAJOR}.{MINOR}.{MICRO}'

# Try to fetch the git revision number from the .git directory if it exists,
Expand Down

0 comments on commit f77a919

Please sign in to comment.