From 6f8c69121241a1f0c7144207a1aebc9290e59142 Mon Sep 17 00:00:00 2001 From: Frances Hartwell Date: Mon, 13 Nov 2023 14:01:37 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.0.dev1=20=E2=86=92=200.1?= =?UTF-8?q?0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- copulas/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/copulas/__init__.py b/copulas/__init__.py index 26caabd3..5817f284 100644 --- a/copulas/__init__.py +++ b/copulas/__init__.py @@ -4,7 +4,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.10.0.dev1' +__version__ = '0.10.0' import contextlib import importlib diff --git a/setup.cfg b/setup.cfg index 37e7f933..e2a7a619 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0.dev1 +current_version = 0.10.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 3554e430..69024804 100644 --- a/setup.py +++ b/setup.py @@ -135,6 +135,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/Copulas', - version='0.10.0.dev1', + version='0.10.0', zip_safe=False, )