From 6c75bb2df22131aa9c9eefa51867d821442fe2a3 Mon Sep 17 00:00:00 2001 From: Paul Haesler Date: Tue, 16 Jul 2024 13:06:00 +1000 Subject: [PATCH] Prep for 1.8.41 release. (#1034) * Prep for 1.8.41 release. * Add this PR to HISTORY.rst --- HISTORY.rst | 15 +++++++++++++++ datacube_ows/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 4dbcf623..7b14cc5b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -7,6 +7,21 @@ History Datacube-ows version 1.8.x indicates that it is designed work with datacube-core versions 1.8.x. +1.8.41 (2024-07-16) +------------------- + +New Feature! Multi-date handler aggregator functions for colour-ramp type styles can now receive +either the results of the index function, or the raw band data by setting a config option. (Previously +they always received the results of the index function.) + +* Improved error messages when creating extents without materialised views (#1016) +* Several minor bug-fixes and improved error handling in WCS code (#1027) +* Automated updates (#1022) +* Allow multi-date handler aggregator functions to receive raw data (#1033) +* Update HISTORY.rst and increment default version for release (#1034) + +This release includes contributions from @SpacemanPaul and @whatnick + 1.8.40 (2024-04-29) ------------------- diff --git a/datacube_ows/__init__.py b/datacube_ows/__init__.py index 1b62bf25..5f7a5040 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.40?" + __version__ = "1.8.41?"