From b05890be46b2f53e517033fb5d3fa7463681ba33 Mon Sep 17 00:00:00 2001 From: Wei Ji Date: Wed, 16 Sep 2020 23:34:33 +1200 Subject: [PATCH] :bookmark: v0.3.0 Release v0.3.0. --- .github/release-drafter.yml | 2 +- deepicedrain/__init__.py | 2 +- deepicedrain/tests/test_deepicedrain.py | 2 +- pyproject.toml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index fdedc33..52f7046 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.2.0...v0.2.1). + Full list of commits made since last release viewable at [compare view](https://github.com/weiji14/deepicedrain/compare/v0.2.1...v0.3.0). diff --git a/deepicedrain/__init__.py b/deepicedrain/__init__.py index 91b29dc..e891b76 100644 --- a/deepicedrain/__init__.py +++ b/deepicedrain/__init__.py @@ -14,7 +14,7 @@ ) from deepicedrain.vizplots import IceSat2Explorer, plot_alongtrack, plot_crossovers -__version__: str = "0.2.1" +__version__: str = "0.3.0" # 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 555cc4c..e3ccf57 100644 --- a/deepicedrain/tests/test_deepicedrain.py +++ b/deepicedrain/tests/test_deepicedrain.py @@ -4,7 +4,7 @@ def test_version(): - assert __version__ == "0.2.1" + assert __version__ == "0.3.0" def test_deepicedrain_catalog(): diff --git a/pyproject.toml b/pyproject.toml index 04c4fe2..ea9755e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "deepicedrain" -version = "0.2.1" -description = "" +version = "0.3.0" +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"