-------------------
From release 0.15 onward, all minor versions of HyRiver packages
will be pinned. This ensures that previous minor versions of HyRiver
packages cannot be installed with later minor releases. For example,
if you have ``py3dep==0.14.x`` installed, you cannot install
``pydaymet==0.15.x``. This is to ensure that the API is
consistent across all minor versions.
New Features
~~~~~~~~~~~~
- Add ``source`` argument to both ``get_bygeom`` and ``get_bycoords`` functions.
Valid values for source are ``grib`` (default) and ``netcdf``.
Both return the same values, the latter also offers additional variable ``psurf``
for surface pressure.
Valid variable names for ``netcdf`` are:
``prcp``, ``pet``, ``wind_u``, ``wind_v``, ``humidity``,
``temp``, ``rsds``, ``rlds``, ``psurf``
Valid variable names for ``grib`` source are unchanged as to not
introduce breaking changes. By `Luc Rébillout <https://github.com/LucRSquared>`__.
- For now, retain compatibility with ``shapely<2`` while supporting
``shapley>=2``.