From fafe86ba1013d26bab3b6e82abe163e16de4afe4 Mon Sep 17 00:00:00 2001 From: sarahmish Date: Thu, 10 Nov 2022 14:37:56 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.0.dev0=20=E2=86=92=200.4.?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- orion/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/orion/__init__.py b/orion/__init__.py index 42a850a2..ba96d371 100644 --- a/orion/__init__.py +++ b/orion/__init__.py @@ -2,7 +2,7 @@ __author__ = """MIT Data To AI Lab""" __email__ = 'dailabmit@gmail.com' -__version__ = '0.4.0.dev0' +__version__ = '0.4.0' import os diff --git a/setup.cfg b/setup.cfg index 2d891886..33fb1ccd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0.dev0 +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 3bf8e737..c4b74922 100644 --- a/setup.py +++ b/setup.py @@ -122,6 +122,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sintel-dev/Orion', - version='0.4.0.dev0', + version='0.4.0', zip_safe=False, )