From c8ca38408b5b0161b835260902361bd389aed3a0 Mon Sep 17 00:00:00 2001 From: Plamen Valentinov Kolev Date: Wed, 26 Apr 2023 22:48:58 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.0.dev0=20=E2=86=92=200.9.?= =?UTF-8?q?0.dev1?= 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 1fc397a3..5ffad695 100644 --- a/copulas/__init__.py +++ b/copulas/__init__.py @@ -4,7 +4,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.9.0.dev0' +__version__ = '0.9.0.dev1' import contextlib import importlib diff --git a/setup.cfg b/setup.cfg index 1d5c6fd9..54277d72 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0.dev0 +current_version = 0.9.0.dev1 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 49732295..ba9ba0e5 100644 --- a/setup.py +++ b/setup.py @@ -137,6 +137,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/Copulas', - version='0.9.0.dev0', + version='0.9.0.dev1', zip_safe=False, )