Skip to content

Commit 0a08a21

Browse files
committed
Bump version: 0.7.0 → 0.8.0
1 parent 6626fe5 commit 0a08a21

File tree

4 files changed

+21
-20
lines changed

4 files changed

+21
-20
lines changed

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.7.0"
4+
LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.8.0"
55

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

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
# The short X.Y version.
6969
version = ''
7070
# The full version, including alpha/beta/rc tags.
71-
release = '0.7.0'
71+
release = '0.8.0'
7272

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

emu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .wsgi import application
22

3-
__version__ = '0.7.0'
3+
__version__ = '0.8.0'

setup.cfg

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

@@ -19,26 +19,27 @@ search = Version="{current_version}"
1919
replace = Version="{new_version}"
2020

2121
[tool:pytest]
22-
addopts =
23-
--strict
24-
--tb=native
25-
tests/
22+
addopts =
23+
--strict
24+
--tb=native
25+
tests/
2626
python_files = test_*.py
27-
markers =
28-
online: mark test to need internet connection
29-
slow: mark test to be slow
27+
markers =
28+
online: mark test to need internet connection
29+
slow: mark test to be slow
3030

3131
[flake8]
32-
ignore=F401,E402
33-
max-line-length=120
34-
exclude =
35-
.git,
36-
__pycache__,
37-
docs/source/conf.py,
38-
build,
39-
dist,
40-
src,
32+
ignore = F401,E402
33+
max-line-length = 120
34+
exclude =
35+
.git,
36+
__pycache__,
37+
docs/source/conf.py,
38+
build,
39+
dist,
40+
src,
4141

4242
[doc8]
4343
ignore-path = docs/build,docs/source/_templates,docs/source/_static
4444
max-line-length = 120
45+

0 commit comments

Comments
 (0)