From f63cad6861fdc0bab8c675915c81118163bb3159 Mon Sep 17 00:00:00 2001 From: Austin Walters Date: Tue, 16 Mar 2021 16:05:45 -0500 Subject: [PATCH] Update version (#72) * improved hashing functionality * impoved unique detection * updated to use range generator * much faster * remove duplicates * Update version.py --- dataprofiler/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataprofiler/version.py b/dataprofiler/version.py index 6564117be..c69dda854 100644 --- a/dataprofiler/version.py +++ b/dataprofiler/version.py @@ -4,7 +4,7 @@ MAJOR = 0 MINOR = 3 -MICRO = 4 +MICRO = 5 VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)