From 75c15307c0f5bbe914dab92b9f2663ab974a37c6 Mon Sep 17 00:00:00 2001 From: Erni Durdevic Date: Fri, 14 Oct 2022 11:39:09 +0200 Subject: [PATCH] Updated version to 0.3.1 and updated changelog (#224) --- CHANGELOG.md | 8 ++++++++ docs/source/conf.py | 2 +- pom.xml | 2 +- python/mosaic/__init__.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 138dfc347..3fb4fba3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.3.1 +- Implemented `st_unaryunion` function +- Added BNG grid plotting to mosaic_kepler +- Added arbitrary CRS transformations to mosaic_kepler plotting +- Added documentation for BNG grid +- Bug fixes and improvements on the BNG grid implementation +- Typo fixes + ## v0.3.0 - Integration with H3 functions from Databricks runtime 11.2 - Refactored grid functions to reflect the naming convention of H3 functions from Databricks runtime diff --git a/docs/source/conf.py b/docs/source/conf.py index 6d4d2d994..9e5720d19 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Stuart Lynn, Milos Colic, Erni Durdevic, Robert Whiffin, Timo Roest' # The full version, including alpha/beta/rc tags -release = 'v0.3.0' +release = 'v0.3.1' # -- General configuration --------------------------------------------------- diff --git a/pom.xml b/pom.xml index 591728e0b..3add98681 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.databricks.labs mosaic - 0.3.1-SNAPSHOT + 0.3.1 1.8 diff --git a/python/mosaic/__init__.py b/python/mosaic/__init__.py index 05f5473a1..93e30b671 100644 --- a/python/mosaic/__init__.py +++ b/python/mosaic/__init__.py @@ -2,4 +2,4 @@ from .core import MosaicLibraryHandler, MosaicContext, MosaicFrame from .utils.display_handler import displayMosaic -__version__ = "0.3.1-SNAPSHOT" +__version__ = "0.3.1"