diff --git a/setup.py b/setup.py index bf26e47..c4fe705 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 = 1 # 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 +MINOR = 2 # 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 VERSION = f'{MAJOR}.{MINOR}.{MICRO}' # Try to fetch the git revision number from the .git directory if it exists,