diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0c54521..502979e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 commit = True [bumpversion:file:setup.py] diff --git a/docs/conf.py b/docs/conf.py index ae95fcc..5ab9399 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ project = "sankee" copyright = "2021, Aaron Zuspan" author = "Aaron Zuspan" -version = "v0.2.0" +version = "v0.2.1" # -- General configuration --------------------------------------------------- diff --git a/sankee/__init__.py b/sankee/__init__.py index e00f7f0..b5d6332 100644 --- a/sankee/__init__.py +++ b/sankee/__init__.py @@ -1,7 +1,7 @@ from sankee import datasets from sankee.plotting import sankify -__version__ = "0.2.0" +__version__ = "0.2.1" __all__ = [ "sankify", diff --git a/setup.py b/setup.py index 24d6cb4..e739fd3 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ setup( name="sankee", - version="0.2.0", + version="0.2.1", description="Visualize classified time series data with interactive Sankey plots in Google Earth Engine.", long_description=long_description, long_description_content_type="text/markdown",