diff --git a/docs/conf.py b/docs/conf.py index b901678e..db9a165b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 @@ -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), } diff --git a/docs/index.rst b/docs/index.rst index 69cf2147..d13f95cd 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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 diff --git a/docs/ref/release_notes.rst b/docs/ref/release_notes.rst index 766b33e4..9e25d296 100644 --- a/docs/ref/release_notes.rst +++ b/docs/ref/release_notes.rst @@ -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 `_ made various updates to allow + iris-grib to work with the latest versions of + `iris `_, + `cf-units `_, + `ecCodes `_ and + `cartopy `_, 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) `_ + + +Dependencies +^^^^^^^^^^^^ +* now requires Python version >= 3.8 + + +Internal +^^^^^^^^ +* `@TomDufall `_ updated the code so that it was + `flake8 `_ compliant and enabled flake8 + checks to the CI. + `(PR#271) `_ + + What's new in iris-grib v0.17.1 ------------------------------- @@ -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). diff --git a/iris_grib/__init__.py b/iris_grib/__init__.py index 20588385..dedb22f6 100644 --- a/iris_grib/__init__.py +++ b/iris_grib/__init__.py @@ -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']