From 55e22b067971141752d6003dd651c5892310f612 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Wed, 11 Oct 2023 16:44:07 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.1=20=E2=86=92=200.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- geoai/__init__.py | 2 +- setup.cfg | 4 +--- setup.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/geoai/__init__.py b/geoai/__init__.py index 8119edb..952765f 100644 --- a/geoai/__init__.py +++ b/geoai/__init__.py @@ -2,4 +2,4 @@ __author__ = """Qiusheng Wu""" __email__ = 'giswqs@gmail.com' -__version__ = '0.0.1' +__version__ = '0.1.0' diff --git a/setup.cfg b/setup.cfg index 914033b..2043a69 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.1 +current_version = 0.1.0 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 d592ce9..9228ae4 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/opengeos/geoai', - version='0.0.1', + version='0.1.0', zip_safe=False, )