From bcf2f791daa3017fa265b65d623513e988fe6d10 Mon Sep 17 00:00:00 2001 From: Richard Murray Date: Wed, 4 Jul 2018 12:08:32 -0700 Subject: [PATCH] mark this as 0.3.3 release in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 946ba1e7..47488207 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ MINOR = 3 MICRO = 3 POST = 0 -ISRELEASED = False +ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) if POST != 0: VERSION += '-post{:d}'.format(POST)