From fc7fce33e61ed07ff116db6b9ef92ac8156ac9d3 Mon Sep 17 00:00:00 2001 From: Paul Haesler Date: Tue, 12 Mar 2024 13:39:51 +1100 Subject: [PATCH] For 1.8.38 release. (#997) * Update default version number. * Update HISTORY.rst * Update HISTORY.rst --- HISTORY.rst | 17 +++++++++++++++++ datacube_ows/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8eed73930..6cc3f2236 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -7,6 +7,23 @@ History Datacube-ows version 1.8.x indicates that it is designed work with datacube-core versions 1.8.x. +1.8.38 (2024-03-12) +------------------- + +Previously the spatial materialised view recognised metadata types by individual name and required manual tweaking +for every new metadata type. From 1.8.38, all metadata types with a name starting with `eo3_` will be treated as +eo3 compatible. + +Run `datacube-ows-update --schema --role ` to activate the new definitions. + +Also includes miscellaneous bug fixes and maintenance. + +* Upgrade pypi publish github action from unsupported version (#994) +* Tweak FeatureInfo JSON documents to be compliant geojson (#995) +* Tweak materialised view definition to handle all eo3 compatible metadata types (#996) +* Fix Dimension sections of WMTS Capabilities documents to comply with standard (#996) +* Update HISTORY.rst and increment default version for release (#997) + 1.8.37 (2024-02-28) ------------------- diff --git a/datacube_ows/__init__.py b/datacube_ows/__init__.py index 89b768694..8bdf46ad1 100644 --- a/datacube_ows/__init__.py +++ b/datacube_ows/__init__.py @@ -6,4 +6,4 @@ try: from ._version import version as __version__ except ImportError: - __version__ = "1.8.37+?" + __version__ = "1.8.38+?"