From cb3569d90bb0064f4760185d4fab91d582c0edd1 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Fri, 1 Sep 2023 22:12:11 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.0=20=E2=86=92=200.10.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- samgeo/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/samgeo/__init__.py b/samgeo/__init__.py index a27a1b76..14d376f0 100644 --- a/samgeo/__init__.py +++ b/samgeo/__init__.py @@ -2,7 +2,7 @@ __author__ = """Qiusheng Wu""" __email__ = "giswqs@gmail.com" -__version__ = '0.10.0' +__version__ = '0.10.1' from .samgeo import * diff --git a/setup.cfg b/setup.cfg index 3447aa16..b2f832cd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.10.1 commit = True tag = True diff --git a/setup.py b/setup.py index 38db6d37..2b9e7620 100644 --- a/setup.py +++ b/setup.py @@ -57,6 +57,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/opengeos/segment-geospatial", - version='0.10.0', + version='0.10.1', zip_safe=False, )