From a3f67144fd39f18e0ebc97aa7bd54114ee303ebb Mon Sep 17 00:00:00 2001 From: Sarah Alnegheimish Date: Tue, 3 Dec 2024 13:30:43 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.2.dev1=20=E2=86=92=200.2.?= =?UTF-8?q?2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mlstars/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mlstars/__init__.py b/mlstars/__init__.py index 0ac4f31..2899eee 100644 --- a/mlstars/__init__.py +++ b/mlstars/__init__.py @@ -2,7 +2,7 @@ __author__ = 'MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com' -__version__ = '0.2.2.dev1' +__version__ = '0.2.2' import os diff --git a/setup.cfg b/setup.cfg index db16b83..1b9fe01 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.2.dev1 +current_version = 0.2.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 fe31856..2286d86 100644 --- a/setup.py +++ b/setup.py @@ -118,6 +118,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sintel-dev/ml-stars', - version='0.2.2.dev1', + version='0.2.2', zip_safe=False, )