From dfe3bb9cc035c8d4880724db69c86e749178e65b Mon Sep 17 00:00:00 2001 From: Carles Sala Date: Wed, 24 Feb 2021 21:09:51 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.0=20=E2=86=92=200.5.1.dev?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- conda/meta.yaml | 2 +- copulas/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index 88184776..ec8bfa70 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'copulas' %} -{% set version = '0.5.0' %} +{% set version = '0.5.1.dev0' %} package: name: "{{ name|lower }}" diff --git a/copulas/__init__.py b/copulas/__init__.py index 10eebc1a..cfa034b4 100644 --- a/copulas/__init__.py +++ b/copulas/__init__.py @@ -4,7 +4,7 @@ __author__ = 'MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com', -__version__ = '0.5.0' +__version__ = '0.5.1.dev0' import contextlib import importlib diff --git a/setup.cfg b/setup.cfg index d615d5df..bebe45b5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.5.1.dev0 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 5171f598..2b818aee 100644 --- a/setup.py +++ b/setup.py @@ -110,6 +110,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/Copulas', - version='0.5.0', + version='0.5.1.dev0', zip_safe=False, )