Skip to content

Commit

Permalink
Bump version: 0.11.1 → 0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bumpversion[bot] committed Jul 27, 2023
1 parent 040c384 commit 879c178
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"project_repo_name": "finch",
"project_readthedocs_name": "finch",
"project_short_description": "A Web Processing Service for Climate Indicators.",
"version": "0.11.1",
"version": "0.11.2",
"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
Expand Up @@ -3,7 +3,7 @@ FROM condaforge/mambaforge
ARG DEBIAN_FRONTEND=noninteractive
ENV PIP_ROOT_USER_ACTION=ignore
LABEL org.opencontainers.image.authors="https://github.com/bird-house/finch"
LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.11.1"
LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.11.2"

# Switch to /code directory
WORKDIR /code
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@
# the built documents.
#
# The short X.Y version.
version = "0.11.1"
version = "0.11.2"
# The full version, including alpha/beta/rc tags.
release = "0.11.1"
release = "0.11.2"

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

__author__ = """David Huard"""
__email__ = "huard.david@ouranos.ca"
__version__ = "0.11.1"
__version__ = "0.11.2"
16 changes: 8 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.1
current_version = 0.11.2
commit = True
tag = False

Expand All @@ -23,29 +23,29 @@ search = "version": "{current_version}",
replace = "version": "{new_version}",

[tool:pytest]
addopts =
addopts =
--strict
--tb=native
python_files = test_*.py
markers =
markers =
online: mark test to need internet connection
slow: mark test to be slow

[flake8]
ignore = F401,E402,E203,W503
max-line-length = 120
exclude =
exclude =
.git
__pycache__
docs/source/conf.py
build
dist
src
tests
rst-directives =
rst-directives =
bibliography
autolink-skip
rst-roles =
rst-roles =
doc
mod
py:attr
Expand All @@ -64,7 +64,7 @@ rst-roles =
cite:p
cite:t
cite:ts
extend-ignore =
extend-ignore =
RST399
RST201
RST203
Expand All @@ -75,7 +75,7 @@ extend-ignore =
[pycodestyle]
count = False
exclude = docs/source/conf.py
ignore =
ignore =
E226
E402
E501
Expand Down

0 comments on commit 879c178

Please sign in to comment.