diff --git a/.cruft.json b/.cruft.json index 2a8783a..896f97d 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.14.0", + "version": "0.15.0", "open_source_license": "Apache Software License 2.0", "http_port": "5000", "use_pytest": "y", diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c2ac58b..1cf7f1b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changes ******* +0.15.0 (2024-11-20) +=================== + +* Updated decadal fixes to handle proleptic gregorian calendar (#263, #265). +* Updated provenance to include local installation "site" name (#264). +* Fixed links in documentation (#262). + 0.14.0 (2024-10-22) =================== * Added a Docker image testing step the GitHub Actions CI pipeline (#259). diff --git a/Dockerfile b/Dockerfile index 34628c3..2db5e35 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM condaforge/mambaforge ARG DEBIAN_FRONTEND=noninteractive ENV PIP_ROOT_USER_ACTION=ignore LABEL org.opencontainers.image.authors="https://github.com/roocs/rook" -LABEL Description="rook WPS" Vendor="Birdhouse" Version="0.14.0" +LABEL Description="rook WPS" Vendor="Birdhouse" Version="0.15.0" # Set the working directory to /code WORKDIR /code diff --git a/pyproject.toml b/pyproject.toml index e3bac4c..3e4d903 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,7 +67,7 @@ rook = "rook.cli:cli" [tool] [tool.bumpversion] -current_version = "0.14.0" +current_version = "0.15.0" commit = true commit_args = "--no-verify" tag = true diff --git a/src/rook/__version__.py b/src/rook/__version__.py index 78d22c8..dbcb7f6 100644 --- a/src/rook/__version__.py +++ b/src/rook/__version__.py @@ -6,4 +6,4 @@ __author__ = """Carsten Ehbrecht""" __email__ = "ehbrecht@dkrz.de" -__version__ = "0.14.0" +__version__ = "0.15.0"