Skip to content

Commit c0bb27d

Browse files
committed
Bump version: 0.11.1 → 0.12.0
1 parent c7e4359 commit c0bb27d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.cruft.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"project_repo_name": "emu",
2525
"project_readthedocs_name": "emu",
2626
"project_short_description": "WPS processes for testing and demos.",
27-
"version": "0.11.1",
27+
"version": "0.12.0",
2828
"open_source_license": "Apache Software License 2.0",
2929
"http_port": "5000",
3030
"_copy_without_render": [

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# vim:set ft=dockerfile:
22
FROM continuumio/miniconda3
33
MAINTAINER https://github.com/bird-house/emu
4-
LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.11.1"
4+
LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.12.0"
55

66
# Update Debian system
77
RUN apt-get update && apt-get install -y \

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@
9090
# the built documents.
9191
#
9292
# The short X.Y version.
93-
version = "0.11.1"
93+
version = "0.12.0"
9494
# The full version, including alpha/beta/rc tags.
95-
release = "0.11.1"
95+
release = "0.12.0"
9696

9797
# The language for content autogenerated by Sphinx. Refer to documentation
9898
# for a list of supported languages.

emu/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
__author__ = """Carsten Ehbrecht"""
88
__email__ = 'ehbrecht@dkrz.de'
9-
__version__ = '0.11.1'
9+
__version__ = '0.12.0'

setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.11.1
2+
current_version = 0.12.0
33
commit = True
44
tag = True
55

@@ -23,12 +23,12 @@ search = "version": "{current_version}",
2323
replace = "version": "{new_version}",
2424

2525
[tool:pytest]
26-
addopts =
26+
addopts =
2727
--strict
2828
--tb=native
2929
tests/
3030
python_files = test_*.py
31-
markers =
31+
markers =
3232
online: mark test to need internet connection
3333
slow: mark test to be slow
3434
flaky: mark test to be flaky
@@ -37,7 +37,7 @@ markers =
3737
[flake8]
3838
ignore = F401,E402
3939
max-line-length = 120
40-
exclude =
40+
exclude =
4141
.git,
4242
__pycache__,
4343
docs/source/conf.py,

0 commit comments

Comments
 (0)