From 7616a415f526c7c1b9efb2f545d2d0b952008d4d Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Tue, 22 Aug 2023 14:30:54 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.7.0.dev3=20=E2=86=92=201.7.?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rdt/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rdt/__init__.py b/rdt/__init__.py index ef60f2507..109bc906a 100644 --- a/rdt/__init__.py +++ b/rdt/__init__.py @@ -5,7 +5,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '1.7.0.dev3' +__version__ = '1.7.0' import sys diff --git a/setup.cfg b/setup.cfg index 14bd82bea..8c6330b2e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.0.dev3 +current_version = 1.7.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 4a9c97484..e43c4955d 100644 --- a/setup.py +++ b/setup.py @@ -139,6 +139,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/RDT', - version='1.7.0.dev3', + version='1.7.0', zip_safe=False, )