From c0bb27d57afcaa361772ce99eaf11f706983b3b2 Mon Sep 17 00:00:00 2001 From: Carsten Ehbrecht Date: Wed, 7 Oct 2020 16:50:56 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.11.1=20=E2=86=92=200.12.0?= 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 ++-- emu/__version__.py | 2 +- setup.cfg | 8 ++++---- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.cruft.json b/.cruft.json index 307bb5c..102589b 100644 --- a/.cruft.json +++ b/.cruft.json @@ -24,7 +24,7 @@ "project_repo_name": "emu", "project_readthedocs_name": "emu", "project_short_description": "WPS processes for testing and demos.", - "version": "0.11.1", + "version": "0.12.0", "open_source_license": "Apache Software License 2.0", "http_port": "5000", "_copy_without_render": [ diff --git a/Dockerfile b/Dockerfile index 77f304f..a356deb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # vim:set ft=dockerfile: FROM continuumio/miniconda3 MAINTAINER https://github.com/bird-house/emu -LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.11.1" +LABEL Description="Emu: Demo PyWPS" 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 4ae7030..2726d97 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -90,9 +90,9 @@ # the built documents. # # The short X.Y version. -version = "0.11.1" +version = "0.12.0" # The full version, including alpha/beta/rc tags. -release = "0.11.1" +release = "0.12.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/emu/__version__.py b/emu/__version__.py index 3701570..9fce8b0 100644 --- a/emu/__version__.py +++ b/emu/__version__.py @@ -6,4 +6,4 @@ __author__ = """Carsten Ehbrecht""" __email__ = 'ehbrecht@dkrz.de' -__version__ = '0.11.1' +__version__ = '0.12.0' diff --git a/setup.cfg b/setup.cfg index 2f5dea7..b0f45be 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.1 +current_version = 0.12.0 commit = True tag = True @@ -23,12 +23,12 @@ search = "version": "{current_version}", replace = "version": "{new_version}", [tool:pytest] -addopts = +addopts = --strict --tb=native tests/ python_files = test_*.py -markers = +markers = online: mark test to need internet connection slow: mark test to be slow flaky: mark test to be flaky @@ -37,7 +37,7 @@ markers = [flake8] ignore = F401,E402 max-line-length = 120 -exclude = +exclude = .git, __pycache__, docs/source/conf.py,