From 985846d845fc330c1eec8b6b5f8a4279567e84fe Mon Sep 17 00:00:00 2001 From: Carsten Ehbrecht Date: Fri, 8 Dec 2023 17:45:19 +0100 Subject: [PATCH 1/2] update changes --- CHANGES.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index a278203..c3e0598 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ******* +0.12.2 (2023-12-08) +================== + +* Fixed the `time_components` paramater to avoid issues with 360day calendar (#245) + 0.12.1 (2023-12-04) ================== From 0ba4575dd4853b72ace2ef59ea1ba2f0330f6bd5 Mon Sep 17 00:00:00 2001 From: Carsten Ehbrecht Date: Fri, 8 Dec 2023 17:46:05 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.12.1=20=E2=86=92=200.12?= =?UTF-8?q?.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cruft.json | 2 +- Dockerfile | 2 +- docs/source/conf.py | 2 +- rook/__version__.py | 2 +- setup.cfg | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.cruft.json b/.cruft.json index 9f3299e..94e6325 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.12.1", + "version": "0.12.2", "open_source_license": "Apache Software License 2.0", "http_port": "5000", "_copy_without_render": [ diff --git a/Dockerfile b/Dockerfile index ac82c8f..28713d4 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.12.1" +LABEL Description="rook WPS" Vendor="Birdhouse" Version="0.12.2" # Update Debian system RUN apt-get update && apt-get install -y \ diff --git a/docs/source/conf.py b/docs/source/conf.py index 8340667..8c7a282 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.12.1" +release = "0.12.2" # 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 57ce631..7a7e006 100644 --- a/rook/__version__.py +++ b/rook/__version__.py @@ -6,4 +6,4 @@ __author__ = """Carsten Ehbrecht""" __email__ = "ehbrecht@dkrz.de" -__version__ = "0.12.1" +__version__ = "0.12.2" diff --git a/setup.cfg b/setup.cfg index faa41fe..c946d54 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.1 +current_version = 0.12.2 commit = True tag = True