From 7a223956b430e1d7c6a80cd284f49438af386f6f Mon Sep 17 00:00:00 2001 From: Jeffrey Gill Date: Sun, 15 Mar 2020 03:51:35 -0400 Subject: [PATCH] Prepare release 1.4.1 --- docs/releasenotes.rst | 1 + docs/releases/1.4.1.rst | 45 +++++++++++++++++++++++++++++++++++++++++ setup.py | 6 +++--- 3 files changed, 49 insertions(+), 3 deletions(-) create mode 100644 docs/releases/1.4.1.rst diff --git a/docs/releasenotes.rst b/docs/releasenotes.rst index 21344ef..3f82be4 100644 --- a/docs/releasenotes.rst +++ b/docs/releasenotes.rst @@ -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 diff --git a/docs/releases/1.4.1.rst b/docs/releases/1.4.1.rst new file mode 100644 index 0000000..564da84 --- /dev/null +++ b/docs/releases/1.4.1.rst @@ -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`) diff --git a/setup.py b/setup.py index 113a522..1e2b224 100644 --- a/setup.py +++ b/setup.py @@ -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,