diff --git a/conda/meta.yaml b/conda/meta.yaml index 686184910..0e893896c 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'rdt' %} -{% set version = '0.5.2.dev1' %} +{% set version = '0.5.2' %} package: name: "{{ name|lower }}" diff --git a/rdt/__init__.py b/rdt/__init__.py index ebea6308a..9d8cb3d56 100644 --- a/rdt/__init__.py +++ b/rdt/__init__.py @@ -5,7 +5,7 @@ __author__ = """MIT Data To AI Lab""" __email__ = 'dailabmit@gmail.com' -__version__ = '0.5.2.dev1' +__version__ = '0.5.2' import numpy as np import pandas as pd diff --git a/setup.cfg b/setup.cfg index 802dc377c..3e9e2001f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.2.dev1 +current_version = 0.5.2 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 3a9f97d9f..a55a4512a 100644 --- a/setup.py +++ b/setup.py @@ -101,6 +101,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/RDT', - version='0.5.2.dev1', + version='0.5.2', zip_safe=False, )