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