Skip to content

Commit

Permalink
Add release notes for 0.9.0 (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandorkertesz authored Jun 25, 2024
1 parent 91846de commit 4973af9
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 12 deletions.
1 change: 1 addition & 0 deletions docs/release_notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release notes
.. toctree::
:maxdepth: 1

version_0.9_updates
version_0.8_updates
version_0.7_updates
version_0.6_updates
Expand Down
18 changes: 18 additions & 0 deletions docs/release_notes/version_0.9_updates.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Version 0.9 Updates
/////////////////////////

Version 0.9.1
===============

New features
++++++++++++++++

- Renamed the ``constants`` source to ``forcings``
- Enabled the NetCDF field parser to recognise the following additional coordinates: "X", "xc", "Y" and "yc"
- Split encoding from writing in experimental GRIB output generator

Fixes
++++++

- Fixed issue when NetCDF data containing cftime dates could not be read
- Fixed issue when NetCDF data containing coordinates called "lat" and "lon" could not be read correctly
24 changes: 12 additions & 12 deletions src/earthkit/data/core/fieldlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -1102,13 +1102,13 @@ def head(self, n=5, **kwargs):
The following calls are equivalent:
.. code-block:: python
.. code-block:: python
ds.head()
ds.head(5)
ds.head(n=5)
ds.ls(5)
ds.ls(n=5)
ds.head()
ds.head(5)
ds.head(n=5)
ds.ls(5)
ds.ls(n=5)
"""
if n <= 0:
Expand Down Expand Up @@ -1139,13 +1139,13 @@ def tail(self, n=5, **kwargs):
The following calls are equivalent:
.. code-block:: python
.. code-block:: python
ds.tail()
ds.tail(5)
ds.tail(n=5)
ds.ls(-5)
ds.ls(n=-5)
ds.tail()
ds.tail(5)
ds.tail(n=5)
ds.ls(-5)
ds.ls(n=-5)
"""
if n <= 0:
Expand Down

0 comments on commit 4973af9

Please sign in to comment.