diff --git a/conda/meta.yaml b/conda/meta.yaml index 96811a93..5357b018 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'sdmetrics' %} -{% set version = '0.4.0.dev1' %} +{% set version = '0.4.0' %} package: name: "{{ name|lower }}" diff --git a/sdmetrics/__init__.py b/sdmetrics/__init__.py index c5cd95e0..d54740c3 100644 --- a/sdmetrics/__init__.py +++ b/sdmetrics/__init__.py @@ -4,7 +4,7 @@ __author__ = 'MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com' -__version__ = '0.4.0.dev1' +__version__ = '0.4.0' import pandas as pd diff --git a/setup.cfg b/setup.cfg index ea7812ba..3eeb997e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0.dev1 +current_version = 0.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 b71e54ef..d8082ec3 100644 --- a/setup.py +++ b/setup.py @@ -119,6 +119,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/SDMetrics', - version='0.4.0.dev1', + version='0.4.0', zip_safe=False, )