Skip to content

Commit

Permalink
Release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgill86 committed Dec 9, 2019
2 parents cabbb33 + 7560a95 commit 3e9f2e6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/releasenotes.rst
Expand Up @@ -6,6 +6,7 @@ Release Notes
.. toctree::
:maxdepth: 1

releases/1.2.1
releases/1.2.0
releases/1.1.1
releases/1.1.0
Expand Down
13 changes: 13 additions & 0 deletions docs/releases/1.2.1.rst
@@ -0,0 +1,13 @@
.. _v1.2.1:

neurotic 1.2.1
==============

2019-12-09

Bug fixes
---------

* Fix loading using Neo IOs lacking ``signals_group_mode`` (``TypeError:
read_block() got an unexpected keyword argument 'signal_group_mode'``)
(:pr:`143`)
6 changes: 3 additions & 3 deletions setup.py
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 = 3 # 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 = 2 # 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 3e9f2e6

Please sign in to comment.