From e35580a0ff10486f37220b909a5ba775624a66b4 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Tue, 6 Feb 2024 11:51:10 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.30.1=20=E2=86=92=200.31.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- leafmap/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/leafmap/__init__.py b/leafmap/__init__.py index 7d4f3a529..08a381f85 100644 --- a/leafmap/__init__.py +++ b/leafmap/__init__.py @@ -2,7 +2,7 @@ __author__ = """Qiusheng Wu""" __email__ = "giswqs@gmail.com" -__version__ = "0.30.1" +__version__ = "0.31.0" import os from .report import Report diff --git a/setup.cfg b/setup.cfg index 622a68df0..8fe9a9ffb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.30.1 +current_version = 0.31.0 commit = True tag = True diff --git a/setup.py b/setup.py index bfc785dad..752ddc71f 100644 --- a/setup.py +++ b/setup.py @@ -98,6 +98,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/opengeos/leafmap", - version="0.30.1", + version="0.31.0", zip_safe=False, )