diff --git a/Dockerfile b/Dockerfile index beb9493..9f44b46 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.8.0" +LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.9.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 783555b..3bcc357 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -68,7 +68,7 @@ # The short X.Y version. version = '' # The full version, including alpha/beta/rc tags. -release = '0.8.0' +release = '0.9.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/emu/__init__.py b/emu/__init__.py index b3ae0fa..b935159 100644 --- a/emu/__init__.py +++ b/emu/__init__.py @@ -1,3 +1,3 @@ from .wsgi import application -__version__ = '0.8.0' +__version__ = '0.9.0' diff --git a/setup.cfg b/setup.cfg index 7bf0336..481486c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.0 +current_version = 0.9.0 commit = True tag = True @@ -22,7 +22,6 @@ replace = Version="{new_version}" addopts = --strict --tb=native - python_files = test_*.py markers = online: mark test to need internet connection