From 7708d95c2819c770bb1cd7cf62fe6d685eb0a19d Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Tue, 29 Mar 2022 22:15:13 -0400 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 --- geospatial/__init__.py | 2 +- setup.cfg | 4 +--- setup.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/geospatial/__init__.py b/geospatial/__init__.py index 0b379d1..5ed4741 100644 --- a/geospatial/__init__.py +++ b/geospatial/__init__.py @@ -2,4 +2,4 @@ __author__ = """Qiusheng Wu""" __email__ = 'giswqs@gmail.com' -__version__ = '0.0.1' +__version__ = '0.0.2' diff --git a/setup.cfg b/setup.cfg index 4e10d9f..03d86c5 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 ebea1f6..a6d0436 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/giswqs/geospatial', - version='0.0.1', + version='0.0.2', zip_safe=False, )