From 0a7b28863e8398788b2977268562867cdb4feeba Mon Sep 17 00:00:00 2001 From: Patrick Peglar Date: Tue, 14 Jun 2022 08:25:58 +0100 Subject: [PATCH] Bump version for v0.2.0 release. (#58) --- README.md | 4 ++-- lib/ugrid_checks/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a5252d1..1d2877b 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![bsd-3-clause](https://img.shields.io/github/license/pp-mo/ugrid-checks)](https://github.com/pp-mo/ugrid-checks/blob/main/LICENSE) [![black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) -**Version : 0.1.2** +**Version : 0.2.0** A utility to check netcdf files to the [UGRID specification](http://ugrid-conventions.github.io/ugrid-conventions/). @@ -243,7 +243,7 @@ Please create an issue in : https://github.com/pp-mo/ugrid-checks ## Changelog * TODO: move to separate file ? - * **v0.2.0** (unreleased) + * [**v0.2.0**](https://github.com/pp-mo/ugrid-checks/releases/tag/v0.2.0) * [#45](https://github.com/pp-mo/ugrid-checks/pull/45) implemented all checks on variable data content, subject to a datasize threshold * [#48](https://github.com/pp-mo/ugrid-checks/pull/48) relaxed the requirements diff --git a/lib/ugrid_checks/__init__.py b/lib/ugrid_checks/__init__.py index f48df10..5997d2f 100644 --- a/lib/ugrid_checks/__init__.py +++ b/lib/ugrid_checks/__init__.py @@ -1,5 +1,5 @@ from .check import check_dataset __all__ = ["check_dataset"] -__version__ = "0.2.dev0" +__version__ = "0.2.0" _cf_version = "1.9"