From 594c720900c8ec28d726d8d69ce15ff313807022 Mon Sep 17 00:00:00 2001 From: Nana Abeka Otoo Date: Sat, 23 Sep 2023 03:57:14 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.1=20=E2=86=92=200.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nafes/__init__.py | 2 +- setup.cfg | 4 +--- setup.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/nafes/__init__.py b/nafes/__init__.py index 772fc7b..e9f025b 100644 --- a/nafes/__init__.py +++ b/nafes/__init__.py @@ -2,7 +2,7 @@ __author__ = """Nana Abeka Otoo""" __email__ = 'nanaabekaotoo@gmail.com' -__version__ = '0.0.1' +__version__ = '0.0.2' from .dataset import * from .mutate_labels import * diff --git a/setup.cfg b/setup.cfg index 7466e6f..31b8c30 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.1 +current_version = 0.0.2 commit = True tag = True @@ -18,5 +18,3 @@ universal = 1 exclude = docs [aliases] -# Define setup.py command aliases here - diff --git a/setup.py b/setup.py index 21137d3..577bd81 100644 --- a/setup.py +++ b/setup.py @@ -58,6 +58,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/naotoo1/nafes', - version='0.0.1', + version='0.0.2', zip_safe=False, )