=====
0.3.0
=====

Released on 2022-10-05

* 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 :doc:`/api/operations/geometry` module
  which can export dataset geometry to GeoJSON and Shapefiles
  (:pr:`28`).
* Add :meth:`.Convention.drop_geometry()` method
  (:pr:`29`).
* Add :doc:`/api/operations/point_extraction` module
  and :ref:`emsarray extract-points` command line entry point
  which can extract point data from a dataset
  (:pr:`29`).
