Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
Merge pull request #109 from jpgill86/release-1.0.0
  • Loading branch information
jpgill86 committed Jul 27, 2019
2 parents 43132a4 + 560fb2d commit 1836024
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 4 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.0.0
releases/0.7.0
releases/0.6.0
releases/0.5.1
Expand Down
47 changes: 47 additions & 0 deletions docs/releases/1.0.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
.. _v1.0.0:

neurotic 1.0.0
==============

2019-07-27

🎊 First stable release! 🎉

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

* Major API changes
(`#104 <https://github.com/jpgill86/neurotic/pull/104>`__,
`#100 <https://github.com/jpgill86/neurotic/pull/100>`__,
`#106 <https://github.com/jpgill86/neurotic/pull/106>`__)

* In preparation for this stable release, many formerly public classes and
functions were made private. This was done to minimize the number of
public classes/functions, which beginning with this release will be
treated as stable APIs that are ideally modified only in backwards
compatible ways. Users should trust that public classes and functions
will not be changed without good reason and a major version bump.

* Many improvements to the documentation, including the addition of an `API
Reference Guide <https://neurotic.readthedocs.io/en/latest/api.html>`__

* Add example Jupyter notebook and command line argument for launching it
(`#108 <https://github.com/jpgill86/neurotic/pull/108>`__)

* Add file overwrite option to download functions
(`#106 <https://github.com/jpgill86/neurotic/pull/106>`__)

* Reserve the metadata keyword ``neurotic_config`` for global parameters
(`#93 <https://github.com/jpgill86/neurotic/pull/93>`__)

* The ``remote_data_root`` key must now be nested under
``neurotic_config``.

Bug fixes
---------

* Fix crash when epoch encoder file contains labels not listed in metadata
(`#97 <https://github.com/jpgill86/neurotic/pull/97>`__)

* Allow amplitude discriminators to be specified with arbitrary units
(`#99 <https://github.com/jpgill86/neurotic/pull/99>`__)
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

# 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 = 0 # increment for backwards-incompatible changes
MINOR = 8 # increment for backwards-compatible feature additions
MAJOR = 1 # increment for backwards-incompatible changes
MINOR = 0 # 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
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 Expand Up @@ -111,7 +111,7 @@
'Bug tracker': 'https://github.com/jpgill86/neurotic/issues',
},
classifiers = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
Expand Down

0 comments on commit 1836024

Please sign in to comment.