From e3da3c7d876327ba1af028dae48a2cfc5b61eb67 Mon Sep 17 00:00:00 2001 From: Aaron Ayres Date: Tue, 15 Jun 2021 09:11:10 -0500 Subject: [PATCH] bump version and set IS_RELEASED to False for development of 5.2.1 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 08d999ea7..ae06f5ea1 100644 --- a/setup.py +++ b/setup.py @@ -23,9 +23,9 @@ MAJOR = 5 MINOR = 2 -MICRO = 0 +MICRO = 1 PRERELEASE = "" -IS_RELEASED = True +IS_RELEASED = False # Templates for version strings. RELEASED_VERSION = "{major}.{minor}.{micro}{prerelease}"