diff --git a/doc/source/releasenotes.rst b/doc/source/releasenotes.rst index 5109f28..3b67e53 100644 --- a/doc/source/releasenotes.rst +++ b/doc/source/releasenotes.rst @@ -1,6 +1,12 @@ Release Notes ============= +Version 2.0.3 (2024-06-25) +-------------------------- +Bug Fixes + * Fix problems with vector inputs in different projection to working grid, + introduced in 2.0.0. (https://github.com/ubarsc/rios/pull/94) + Version 2.0.2 (2024-06-19) -------------------------- diff --git a/rios/__init__.py b/rios/__init__.py index 5e5a9fb..fa0ae90 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.2' +RIOS_VERSION = '2.0.3' __version__ = RIOS_VERSION