From 2d111135fe5a2f9523b4a3ba15c1543bca33f554 Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Wed, 23 Aug 2023 14:42:00 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.4.0.dev2=20=E2=86=92=201.4.?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sdv/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sdv/__init__.py b/sdv/__init__.py index 95087202f..b130a3aa4 100644 --- a/sdv/__init__.py +++ b/sdv/__init__.py @@ -6,7 +6,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '1.4.0.dev2' +__version__ = '1.4.0' import sys diff --git a/setup.cfg b/setup.cfg index a010d0080..767a29c98 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0.dev2 +current_version = 1.4.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index 0322638f0..9f0ad95da 100644 --- a/setup.py +++ b/setup.py @@ -137,6 +137,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/SDV', - version='1.4.0.dev2', + version='1.4.0', zip_safe=False, )