From 4d157c8c6110e74461d958a95e0f0e3eebf24c3d Mon Sep 17 00:00:00 2001 From: Taylor Turner Date: Wed, 31 May 2023 12:01:46 -0400 Subject: [PATCH] verion bump 0.9.0 (#848) --- dataprofiler/version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dataprofiler/version.py b/dataprofiler/version.py index 95e28b30d..b2ee586af 100644 --- a/dataprofiler/version.py +++ b/dataprofiler/version.py @@ -1,8 +1,8 @@ """File contains the version number for the package.""" MAJOR = 0 -MINOR = 8 -MICRO = 9 +MINOR = 9 +MICRO = 0 POST = None # otherwise None VERSION = "%d.%d.%d" % (MAJOR, MINOR, MICRO)