From ffc017949c9ea8f42cb9b7e1435691825bdb9993 Mon Sep 17 00:00:00 2001 From: Zeitsperre <10819524+Zeitsperre@users.noreply.github.com> Date: Tue, 4 Apr 2023 13:51:50 -0400 Subject: [PATCH 1/2] update CHANGES.rst --- CHANGES.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 9cf7d77b..7d6872ae 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,14 @@ Changes ======= +0.17.1 (2023-04-04) +------------------- + +Internal Changes +^^^^^^^^^^^^^^^^ +* Dockerfile configuration now uses Python3.8 and `condaforge/mambaforge` base image (#466) +* `pandas` is temporarily pinned below v2.0 (#466) + 0.17.0 (2023-02-28) ------------------- From 9d4442de783c3b77365c9d0c1346723ee5407bb0 Mon Sep 17 00:00:00 2001 From: Zeitsperre <10819524+Zeitsperre@users.noreply.github.com> Date: Tue, 4 Apr 2023 13:51:59 -0400 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.17.0=20=E2=86=92=200.17?= =?UTF-8?q?.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cruft.json | 2 +- Dockerfile | 2 +- docs/source/conf.py | 4 ++-- raven/__version__.py | 2 +- setup.cfg | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.cruft.json b/.cruft.json index fa975bfd..5aeb678f 100644 --- a/.cruft.json +++ b/.cruft.json @@ -23,7 +23,7 @@ "project_repo_name": "raven", "project_readthedocs_name": "pavics-raven", "project_short_description": "Raven offers processes related to hydrological modeling, and in particular, the Raven hydrological modeling framework.", - "version": "0.17.0", + "version": "0.17.1", "open_source_license": "MIT license", "http_port": "9099", "_copy_without_render": [ diff --git a/Dockerfile b/Dockerfile index e9dd1c5e..e11b47d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM condaforge/mambaforge ARG DEBIAN_FRONTEND=noninteractive MAINTAINER https://github.com/huard/raven -LABEL Description="Raven WPS" Vendor="Birdhouse" Version="0.17.0" +LABEL Description="Raven WPS" Vendor="Birdhouse" Version="0.17.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 3cceb54a..49b69401 100755 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -135,9 +135,9 @@ # the built documents. # # The short X.Y version. -version = "0.17.0" +version = "0.17.1" # The full version, including alpha/beta/rc tags. -release = "0.17.0" +release = "0.17.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/raven/__version__.py b/raven/__version__.py index 38935001..e8cd7d45 100644 --- a/raven/__version__.py +++ b/raven/__version__.py @@ -4,4 +4,4 @@ __author__ = """David Huard""" __email__ = "huard.david@ouranos.ca" -__version__ = "0.17.0" +__version__ = "0.17.1" diff --git a/setup.cfg b/setup.cfg index 743e3b5b..d21386dd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.17.0 +current_version = 0.17.1 commit = True tag = False