diff --git a/.cruft.json b/.cruft.json index 731b864..a59c5df 100644 --- a/.cruft.json +++ b/.cruft.json @@ -11,7 +11,7 @@ "project_repo_name": "rook", "project_readthedocs_name": "rook", "project_short_description": "A WPS service for roocs.", - "version": "0.11.0", + "version": "0.12.0", "open_source_license": "Apache Software License 2.0", "http_port": "5000", "_copy_without_render": [ diff --git a/CHANGES.rst b/CHANGES.rst index c0c3dfc..a41d442 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,14 @@ Changes ******* +0.12.0 (2023-11-28) +================== + +* Added regridding operator from clisops >=0.12.0. +* Added tests for regridding process. +* Added smoke test for regridding. +* Run GitHub tests with conda. + 0.11.0 (2023-11-09) ================== diff --git a/Dockerfile b/Dockerfile index 2d335f7..d390088 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # vim:set ft=dockerfile: FROM continuumio/miniconda3 MAINTAINER https://github.com/roocs/rook -LABEL Description="rook WPS" Vendor="Birdhouse" Version="0.11.0" +LABEL Description="rook WPS" Vendor="Birdhouse" Version="0.12.0" # Update Debian system RUN apt-get update && apt-get install -y \ diff --git a/docs/source/conf.py b/docs/source/conf.py index cd2e1f2..54ab762 100755 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -125,7 +125,7 @@ # The short X.Y version. # version = "0.1.0" # The full version, including alpha/beta/rc tags. -release = "0.11.0" +release = "0.12.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/rook/__version__.py b/rook/__version__.py index bd9c9fa..03e513f 100644 --- a/rook/__version__.py +++ b/rook/__version__.py @@ -6,4 +6,4 @@ __author__ = """Carsten Ehbrecht""" __email__ = "ehbrecht@dkrz.de" -__version__ = "0.11.0" +__version__ = "0.12.0" diff --git a/setup.cfg b/setup.cfg index 90c17ca..292be30 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.0 +current_version = 0.12.0 commit = True tag = True @@ -51,3 +51,4 @@ ignore = [doc8] ignore-path = docs/build,docs/source/_templates,docs/source/_static max-line-length = 120 +