Skip to content

Commit

Permalink
v0.3.1: Fix for potential bug for code that imports axographio
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgill86 committed Aug 15, 2018
1 parent 4c21b34 commit 54eaa2d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ issue tracker <https://github.com/CWRUChielLab/axographio/issues>`_.
Changes
-------

0.3.1
~~~~~

* Modify NumPy's global print settings only when running tests

0.3.0
~~~~~

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
# by this script. Try to follow recommended versioning guidelines at semver.org.
MAJOR = 0 # 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
MICRO = 1 # increment for backwards-compatible bug fixes
IS_RELEASED = True # determines whether version will be marked as development
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)


Expand Down

0 comments on commit 54eaa2d

Please sign in to comment.