From 514421ad91d1f98bd614a9d603f128e85a859af3 Mon Sep 17 00:00:00 2001 From: Neil Flood Date: Wed, 19 Jun 2024 08:21:11 +1000 Subject: [PATCH] Release 2.0.2 (#91) --- doc/source/releasenotes.rst | 9 +++++++++ rios/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/source/releasenotes.rst b/doc/source/releasenotes.rst index 325ceaf..5109f28 100644 --- a/doc/source/releasenotes.rst +++ b/doc/source/releasenotes.rst @@ -1,6 +1,15 @@ Release Notes ============= +Version 2.0.2 (2024-06-19) +-------------------------- + +Bug Fixes + * Cope with numpy-2.0 changes in scalar handling (https://github.com/ubarsc/rios/pull/90). + * Fix the now-deprecated ImageReader class so it does not depend on the + now-deprecated ReaderInfo.setBlockDataset (https://github.com/ubarsc/rios/pull/89). + The ImageReader class should be avoided in future. + Version 2.0.1 (2024-06-12) -------------------------- diff --git a/rios/__init__.py b/rios/__init__.py index 7c23317..5e5a9fb 100644 --- a/rios/__init__.py +++ b/rios/__init__.py @@ -21,7 +21,7 @@ # Used to fill in the rest of the comparison methods from functools import total_ordering -RIOS_VERSION = '2.0.1' +RIOS_VERSION = '2.0.2' __version__ = RIOS_VERSION