diff --git a/doc/source/releasenotes.rst b/doc/source/releasenotes.rst index dbb4dd71..67605f93 100644 --- a/doc/source/releasenotes.rst +++ b/doc/source/releasenotes.rst @@ -1,6 +1,29 @@ Release Notes ============= + +Version 1.4.16 (2023-09-28) +--------------------------- + +Bug Fixes: + * Add missing FlushCache call when doing statistics https://github.com/ubarsc/rios/pull/66 + * Suppress GDAL warning when running testsuite with recent GDAL. https://github.com/ubarsc/rios/pull/65 + +Improvements: + * Remove old stats caching code from readerinfo and RAT writing code from imagewriter. + These were both inherited from the original PyModeller code and are no longer + needed. https://github.com/ubarsc/rios/pull/57 and https://github.com/ubarsc/rios/pull/58 + * Improvements to ReadTheDocs formating. https://github.com/ubarsc/rios/pull/59 + and https://github.com/ubarsc/rios/pull/60 + * Implement parallel processing with AWS Batch https://github.com/ubarsc/rios/pull/61 + and https://github.com/ubarsc/rios/pull/67 + * Remove vendored cloudpickle. This standalone package now must be present before + using the parallel processing functionality. https://github.com/ubarsc/rios/pull/63, + https://github.com/ubarsc/rios/pull/68 and https://github.com/ubarsc/rios/pull/69. + * Add new entry points without extensions. This should help Windows users. + https://github.com/ubarsc/rios/pull/64 + + Version 1.4.15 (2023-01-25) --------------------------- diff --git a/rios/__init__.py b/rios/__init__.py index 73074e34..8b1b83cf 100644 --- a/rios/__init__.py +++ b/rios/__init__.py @@ -24,7 +24,7 @@ # Used to fill in the rest of the comparison methods from functools import total_ordering -RIOS_VERSION = '1.4.15' +RIOS_VERSION = '1.4.16' __version__ = RIOS_VERSION