diff --git a/CHANGELOG b/CHANGELOG index 037ef1c..3fa80b8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,16 @@ 1.4.4: + - Bugfix: patch() and update() now work with Cogroups. To specify a + particular cogroup, use the `_index` meta key in the patch. Otherwise, + the patch is applied to all members of the cogroup. + Thanks to @mandresm and @seb-wahl for reporting and collaborating on the + design. + - Multidimensional negative index support + - patch no longer pops off values applied to the namelist + Thanks to Armin Corbin and Claire Carouge for reporting. + - Improved NumPy (and xarray) compatibility through introduction + Thanks to Liam Pattinson for contributing this fix. + +1.4.3: - Bugfix: Cogroup namelist initialization from a cogroup was fixed. Thanks to Rasmus Fogh for reporting. diff --git a/f90nml/__init__.py b/f90nml/__init__.py index 64b3ea0..6d37107 100644 --- a/f90nml/__init__.py +++ b/f90nml/__init__.py @@ -6,7 +6,7 @@ from f90nml.namelist import Namelist from f90nml.parser import Parser -__version__ = '1.4.3' +__version__ = '1.4.4' def read(nml_path):