From b4ee02900fc45d29c4436e5f267ccb0f89128dd3 Mon Sep 17 00:00:00 2001 From: Jeffrey Gill Date: Thu, 17 Oct 2019 02:32:12 -0400 Subject: [PATCH] After release --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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,