diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 665a3b4..601c031 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -19,4 +19,4 @@ template: | $CHANGES - Full list of commits made since last release viewable at [compare view](https://github.com/weiji14/deepicedrain/compare/v0.3.0...v0.3.1). + Full list of commits made since last release viewable at [compare view](https://github.com/weiji14/deepicedrain/compare/v0.3.1...v0.3.2). diff --git a/deepicedrain/__init__.py b/deepicedrain/__init__.py index 2a68768..8e5d3fa 100644 --- a/deepicedrain/__init__.py +++ b/deepicedrain/__init__.py @@ -15,7 +15,7 @@ ) from deepicedrain.vizplots import IceSat2Explorer, plot_alongtrack, plot_crossovers -__version__: str = "0.3.1" +__version__: str = "0.3.2" # Loads the ICESat-2 ATLAS intake data catalog _catalog_path = importlib.resources.path( diff --git a/deepicedrain/tests/test_deepicedrain.py b/deepicedrain/tests/test_deepicedrain.py index 61318e1..e8e38c5 100644 --- a/deepicedrain/tests/test_deepicedrain.py +++ b/deepicedrain/tests/test_deepicedrain.py @@ -4,7 +4,7 @@ def test_version(): - assert __version__ == "0.3.1" + assert __version__ == "0.3.2" def test_deepicedrain_catalog(): diff --git a/pyproject.toml b/pyproject.toml index 4064e82..dc6871c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deepicedrain" -version = "0.3.1" +version = "0.3.2" description = "Mapping and monitoring deep subglacial water activity in Antarctica using remote sensing and machine learning." authors = ["Wei Ji Leong "] license = "LGPL-3.0-or-later"