From 02dedec8607f31769805f442f77919e36695bcb7 Mon Sep 17 00:00:00 2001 From: Aaron Ayres Date: Tue, 1 Jun 2021 11:33:31 -0500 Subject: [PATCH] Enable Release Candidate 5.2.0rc1 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index f43940c66..3fc81b2ac 100644 --- a/setup.py +++ b/setup.py @@ -22,10 +22,10 @@ from setuptools.command.install import install as base_install MAJOR = 5 -MINOR = 1 +MINOR = 2 MICRO = 0 -PRERELEASE = "" -IS_RELEASED = False +PRERELEASE = "rc1" +IS_RELEASED = True # Templates for version strings. RELEASED_VERSION = "{major}.{minor}.{micro}{prerelease}"