From 17067ad3cb2c8165d2ea5af4dba3fd827da9e6ae Mon Sep 17 00:00:00 2001 From: Wei Ji Date: Fri, 17 Jul 2020 10:01:03 +1200 Subject: [PATCH] :bookmark: v0.2.1 Release v0.2.1 --- .github/release-drafter.yml | 2 +- deepicedrain/__init__.py | 2 +- deepicedrain/tests/test_deepicedrain.py | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 7a3e1c1..e24291b 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -17,4 +17,4 @@ template: | $CHANGES - Full list of commits made since last release viewable at [compare view](https://github.com/weiji14/deepicedrain/compare/v0.1.0...v0.2.0). + Full list of commits made since last release viewable at [compare view](https://github.com/weiji14/deepicedrain/compare/v0.2.0...v0.2.1). diff --git a/deepicedrain/__init__.py b/deepicedrain/__init__.py index 0df1dc0..1dd8afd 100644 --- a/deepicedrain/__init__.py +++ b/deepicedrain/__init__.py @@ -7,7 +7,7 @@ from deepicedrain.deltamath import calculate_delta, nanptp, nan_linregress from deepicedrain.spatiotemporal import Region, deltatime_to_utctime, lonlat_to_xy -__version__: str = "0.2.0" +__version__: str = "0.2.1" # 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 c20f1f5..4889545 100644 --- a/deepicedrain/tests/test_deepicedrain.py +++ b/deepicedrain/tests/test_deepicedrain.py @@ -4,7 +4,7 @@ def test_version(): - assert __version__ == "0.2.0" + assert __version__ == "0.2.1" def test_deepicedrain_catalog(): diff --git a/pyproject.toml b/pyproject.toml index c425095..cd67b8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deepicedrain" -version = "0.1.0" +version = "0.2.1" description = "" authors = ["Wei Ji Leong "] license = "LGPL-3.0-or-later"