Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.7.0 #85

Merged
merged 1 commit into from Jul 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/releasenotes.rst
Expand Up @@ -6,6 +6,7 @@ Release Notes
.. toctree::
:maxdepth: 1

releases/0.7.0.rst
releases/0.6.0.rst
releases/0.5.1.rst
releases/0.5.0.rst
Expand Down
30 changes: 30 additions & 0 deletions docs/releases/0.7.0.rst
@@ -0,0 +1,30 @@
.. _v0.7.0:

neurotic 0.7.0
==============

2019-07-21

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

* New documentation hosted at Read the Docs: https://neurotic.readthedocs.io

* Add menu action for opening metadata in editor
(`#83 <https://github.com/jpgill86/neurotic/pull/83>`__)

* Add menu action for opening the selected data directory
(`#84 <https://github.com/jpgill86/neurotic/pull/84>`__)

* Add list of installed versions of dependencies and doc links to About window
(`#44 <https://github.com/jpgill86/neurotic/pull/44>`__,
`#65 <https://github.com/jpgill86/neurotic/pull/65>`__)

Bug fixes
---------

* Fix files remaining locked after closing a fast-loaded window
(`#69 <https://github.com/jpgill86/neurotic/pull/69>`__)

* Fix launching from command line with bad metadata argument
(`#82 <https://github.com/jpgill86/neurotic/pull/82>`__)
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -13,7 +13,7 @@
MAJOR = 0 # increment for backwards-incompatible changes
MINOR = 7 # 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