diff --git a/doc/source/ReleaseNotes.rst b/doc/source/ReleaseNotes.rst index 29fbc33..e0df349 100644 --- a/doc/source/ReleaseNotes.rst +++ b/doc/source/ReleaseNotes.rst @@ -1,6 +1,18 @@ Pyshepseg Release Notes ======================= +Version 2.0.3 (2024-12-06) +-------------------------- + +New Features: + * Support numpy 2.0 + * Use multiple RIOS readworkers while calculating statistics if recent RIOS available. + +Bug fixes: + * Allow GDAL dataset to be returned from doTiledShepherdSegmentation and histogram to be written to file by default. + * More functions now support receiving a GDAL dataset as input + * Add --noremove option to tiling jobs + Version 2.0.2 (2024-06-12) -------------------------- diff --git a/pyshepseg/__init__.py b/pyshepseg/__init__.py index 48ccafa..efbb817 100644 --- a/pyshepseg/__init__.py +++ b/pyshepseg/__init__.py @@ -29,6 +29,6 @@ """ -SHEPSEG_VERSION = '2.0.2' +SHEPSEG_VERSION = '2.0.3' __version__ = SHEPSEG_VERSION