diff --git a/.cruft.json b/.cruft.json index 15e903f7..a23606db 100644 --- a/.cruft.json +++ b/.cruft.json @@ -22,7 +22,7 @@ "project_repo_name": "finch", "project_readthedocs_name": "finch", "project_short_description": "A Web Processing Service for Climate Indicators.", - "version": "0.7.0", + "version": "0.7.1", "open_source_license": "Apache Software License 2.0", "http_port": "5000", "_copy_without_render": [ diff --git a/AUTHORS.rst b/AUTHORS.rst index 74f3d44c..6948a398 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -10,4 +10,5 @@ Development Lead Contributors ------------ -None yet. Why not be the first? +* Pascal Bourgault +* Trevor James Smith \ No newline at end of file diff --git a/CHANGES.rst b/CHANGES.rst index e8ae69db..8938c67e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,12 @@ Changes ******* +0.7.1 (2021-03-25) +================== +* Add `data_validation` and `cf_compliance` arguments for xclim processes. +* Skip `data_validation` checks for the BCCAQv2HeatWave process. + + 0.7.0 (2021-03-15) ================== diff --git a/Dockerfile b/Dockerfile index 58f05f56..600f7320 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # vim:set ft=dockerfile: FROM continuumio/miniconda3 MAINTAINER https://github.com/bird-house/finch -LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.7.0" +LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.7.1" # Update Debian system RUN apt-get update && apt-get install -y \ diff --git a/docs/source/conf.py b/docs/source/conf.py index b801e947..6fc0fe90 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -91,9 +91,9 @@ # the built documents. # # The short X.Y version. -version = "0.7.0" +version = "0.7.1" # The full version, including alpha/beta/rc tags. -release = "0.7.0" +release = "0.7.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/finch/__version__.py b/finch/__version__.py index b24ba1be..1b494e7a 100644 --- a/finch/__version__.py +++ b/finch/__version__.py @@ -6,4 +6,4 @@ __author__ = """David Huard""" __email__ = "huard.david@ouranos.ca" -__version__ = '0.7.0' +__version__ = '0.7.1' diff --git a/setup.cfg b/setup.cfg index b5952ee7..af188228 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0 +current_version = 0.7.1 commit = True tag = True