diff --git a/leafmap/__init__.py b/leafmap/__init__.py index 1a69ade59e..f1cd6265b8 100644 --- a/leafmap/__init__.py +++ b/leafmap/__init__.py @@ -2,7 +2,7 @@ __author__ = """Qiusheng Wu""" __email__ = "giswqs@gmail.com" -__version__ = "0.0.1" +__version__ = "0.0.2" import os diff --git a/setup.cfg b/setup.cfg index bebcdf1367..de7705be7b 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 de5f66a600..3e60336adf 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/giswqs/leafmap", - version="0.0.1", + version="0.0.2", zip_safe=False, )