From 0a2a9ad47a5bacb53df26c444a96dc7fbcd07488 Mon Sep 17 00:00:00 2001 From: Manu Joseph Date: Sat, 1 May 2021 14:14:07 +0530 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.0-dev0=20=E2=86=92=200.5.?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pytorch_tabular/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pytorch_tabular/__init__.py b/pytorch_tabular/__init__.py index e06ef0a0..364349cb 100644 --- a/pytorch_tabular/__init__.py +++ b/pytorch_tabular/__init__.py @@ -2,7 +2,7 @@ __author__ = """Manu Joseph""" __email__ = "manujosephv@gmail.com" -__version__ = "0.5.0-dev0" +__version__ = "0.5.0" from . import models from .tabular_datamodule import TabularDatamodule diff --git a/setup.cfg b/setup.cfg index e343ff99..0522771c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0-dev0 +current_version = 0.5.0 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index 985ef894..760021f4 100644 --- a/setup.py +++ b/setup.py @@ -58,6 +58,6 @@ def read_requirements(thelibFolder, filename): test_suite="tests", tests_require=test_requirements, url="https://github.com/manujosephv/pytorch_tabular", - version="0.5.0-dev0", + version="0.5.0", zip_safe=False, )