============= Release notes ============= 0.3.0 ===== * Use variable and dimension names as-is, instead of casting to strings. :mod:`xarray` internally treats all variable and dimension names as Hashable, without assuming they are strings. NetCDF4 files always use string names, so this change should not affect you if you only use NetCDF4 datasets (:pr:`25`). * Fix error when UGRID `start_index` is the string `"0"` or `"1"`. The conventions imply this should be an integer type, however real datasets use a string value here so a tolerant implementation is useful (:pr:`26`, :pr:`csiro-coasts/emsarray-data#1`). * Split :mod:`emsarray.operations` in to separate modules (:pr:`27`). * Add :mod:`emsarray.operations.geometry` module which can export dataset geometry to GeoJSON and Shapefiles (:pr:`28`). * Add :meth:`.Format.drop_geometry()` method (:pr:`29`). * Add :mod:`emsarray.operations.point_extraction` module and `emsarray extract-points` command line entry point which can extract point data from a dataset (:pr:`29`). 0.2.0 ===== * Added support for :doc:`additional formats via plugins <../developing/formats>` (:pr:`11`). * Added support for one-based indexing in UGRID datasets (:pr:`14`). * Buffering around clip regions in :meth:`.Format.make_clip_mask` is now optional (:issue:`12`, :pr:`20`). * Removed dependency on SciPy, added missing dependency to conda package. 0.1.0 ===== * Initial public release