Skip to content

Commit

Permalink
Bump version: 0.6.0 → 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cehbrecht committed Jun 18, 2021
1 parent 095c3df commit 8cc2553
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"project_repo_name": "rook",
"project_readthedocs_name": "rook",
"project_short_description": "A WPS service for roocs.",
"version": "0.6.0",
"version": "0.6.1",
"open_source_license": "Apache Software License 2.0",
"http_port": "5000",
"_copy_without_render": [
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# vim:set ft=dockerfile:
FROM continuumio/miniconda3
MAINTAINER https://github.com/roocs/rook
LABEL Description="rook WPS" Vendor="Birdhouse" Version="0.6.0"
LABEL Description="rook WPS" Vendor="Birdhouse" Version="0.6.1"

# Update Debian system
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
# The short X.Y version.
# version = "0.1.0"
# The full version, including alpha/beta/rc tags.
release = "0.6.0"
release = "0.6.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion rook/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

__author__ = """Carsten Ehbrecht"""
__email__ = "ehbrecht@dkrz.de"
__version__ = "0.6.0"
__version__ = "0.6.1"
11 changes: 5 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0
current_version = 0.6.1
commit = True
tag = True

Expand All @@ -23,27 +23,26 @@ 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
smoke: mark test as a smoke/sanity test

[flake8]
max-line-length = 120
exclude =
exclude =
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
src,
mini-esgf-data,
ignore =
ignore =
F401
E402
W503
Expand Down

0 comments on commit 8cc2553

Please sign in to comment.