diff --git a/docs/conf.py b/docs/conf.py index 02c79205..b901678e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # General information about the project. project = u'iris-grib' -copyright = u'2016, Met Office' +copyright = u'2021, Met Office' author = u'Met Office' # The version info for the project you're documenting, acts as replacement for diff --git a/docs/index.rst b/docs/index.rst index 4fec281c..69cf2147 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.16 +Iris-grib v0.17 =============== 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 dc361c14..a031c0ca 100644 --- a/docs/ref/release_notes.rst +++ b/docs/ref/release_notes.rst @@ -2,6 +2,33 @@ Release Notes ============= +What's new in iris-grib v0.17 +----------------------------- + +:Release: 0.17.0 +:Date: 18 May 2021 + +Features +^^^^^^^^ + +* `@m1dr `_ added support for GRIB regulation 92.1.8 + for loading GRIB files where the longitude increment is not given. + `(PR#261) `_ + +* `@lbdreyer `_ added support for loading grid + point and spectral data with CCSDS recommended lossless compression, i.e. + data representation template 42. + `(PR#264) `_ + + +Internal +^^^^^^^^ + +* `@jamesp `_ moved CI testing to Cirrus CI. + `(PR#250) `_ + + + What's new in iris-grib v0.16 ----------------------------- diff --git a/iris_grib/__init__.py b/iris_grib/__init__.py index ae718c6e..e6629b3e 100644 --- a/iris_grib/__init__.py +++ b/iris_grib/__init__.py @@ -33,7 +33,7 @@ from .message import GribMessage -__version__ = '0.17.dev0' +__version__ = '0.17.0' __all__ = ['load_cubes', 'save_grib2', 'load_pairs_from_fields', 'save_pairs_from_cube', 'save_messages']