From 631e29ea362950a379cd5e6226e3cc012c53a7df Mon Sep 17 00:00:00 2001 From: Pascal Bourgault Date: Thu, 7 Jul 2022 13:39:08 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.0=20=E2=86=92=200.9.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 ++-- finch/__version__.py | 2 +- setup.cfg | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.cruft.json b/.cruft.json index 89dd8fc4..07b4fc83 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.9.0", + "version": "0.9.1", "open_source_license": "Apache Software License 2.0", "http_port": "5000", "_copy_without_render": [ diff --git a/Dockerfile b/Dockerfile index 7e355945..b91eeb5c 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.9.0" +LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.9.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 086ada59..5ee4918f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -109,9 +109,9 @@ # the built documents. # # The short X.Y version. -version = "0.9.0" +version = "0.9.1" # The full version, including alpha/beta/rc tags. -release = "0.9.0" +release = "0.9.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 837eb1b7..36bc2553 100644 --- a/finch/__version__.py +++ b/finch/__version__.py @@ -6,4 +6,4 @@ __author__ = """David Huard""" __email__ = "huard.david@ouranos.ca" -__version__ = '0.9.0' +__version__ = '0.9.1' diff --git a/setup.cfg b/setup.cfg index abca388c..ac260643 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0 +current_version = 0.9.1 commit = True tag = True