Skip to content

Commit

Permalink
Update version string to 0.18 and update docs (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
lbdreyer authored Mar 10, 2022
1 parent ac658b4 commit eeb1942
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

# General information about the project.
project = u'iris-grib'
copyright = u'2021, Met Office'
copyright = u'2022, Met Office'
author = u'Met Office'

# The version info for the project you're documenting, acts as replacement for
Expand Down Expand Up @@ -297,5 +297,5 @@
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
'python': ('https://docs.python.org/', None),
'iris': ('http://scitools.org.uk/iris/docs/latest/', None),
'iris': ('https://scitools-iris.readthedocs.io/en/latest/', None),
}
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Iris-grib v0.17
Iris-grib v0.18
===============

The library ``iris-grib`` provides functionality for converting between weather and
Expand Down
33 changes: 33 additions & 0 deletions docs/ref/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@ Release Notes
=============


What's new in iris-grib v0.18.0
-------------------------------

:Release: 0.18.0
:Date: 14 March 2022

Bugs Fixed
^^^^^^^^^^
* `@lbdreyer <https://github.com/lbdreyer>`_ made various updates to allow
iris-grib to work with the latest versions of
`iris <https://scitools-iris.readthedocs.io/en/stable/>`_,
`cf-units <https://cf-units.readthedocs.io/en/latest/>`_,
`ecCodes <https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home>`_ and
`cartopy <https://scitools.org.uk/cartopy/docs/latest/>`_, including casting
the usage of :meth:`cf_units.Unit.date2num` as float. setting and setting the
values of some missing keys using ``gribapi.GRIB_MISSING_LONG``.
`(PR#288) <https://github.com/SciTools/iris-grib/pull/288>`_


Dependencies
^^^^^^^^^^^^
* now requires Python version >= 3.8


Internal
^^^^^^^^
* `@TomDufall <https://github.com/TomDufall>`_ updated the code so that it was
`flake8 <https://flake8.pycqa.org/en/stable/>`_ compliant and enabled flake8
checks to the CI.
`(PR#271) <https://github.com/SciTools/iris-grib/pull/271>`_


What's new in iris-grib v0.17.1
-------------------------------

Expand Down Expand Up @@ -196,6 +228,7 @@ Features

* Updated translations between GRIB parameter code and CF standard_name or
long_name :

* additional WAFC codes, both to and from CF
* 'mass_fraction_of_cloud_liquid_water_in_air' and 'mass_fraction_of_cloud_ice_in_air', both to and from CF
* 'surface_downwelling_longwave_flux_in_air', now translates to GRIBcode(2, 0, 5, 3) (but not the reverse).
Expand Down
2 changes: 1 addition & 1 deletion iris_grib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from .message import GribMessage


__version__ = '0.18.dev0'
__version__ = '0.18.0'

__all__ = ['load_cubes', 'save_grib2', 'load_pairs_from_fields',
'save_pairs_from_cube', 'save_messages']
Expand Down

0 comments on commit eeb1942

Please sign in to comment.