Skip to content

Commit

Permalink
Prepare version 0.11 (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlogan2000 authored Jun 13, 2023
2 parents de4c52e + 404fb1f commit 7a3d97c
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 17 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.10.0",
"version": "0.11.0",
"open_source_license": "Apache Software License 2.0",
"http_port": "5000",
"_copy_without_render": [
Expand Down
10 changes: 7 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
Changes
*******

TBD (unreleased)
================
0.11.0 (2023-06-13)
===================
* Added xclim yml module support
* Added humidex days above calculation via yml module
* Reimplmented streamflow indicators via yml module (adjust for xclim 0.41 breaking changes)
* Fixed bug for CanDSC-U6 ensemble "26models" list
* Fixed iter_local when depth > 0 to avoid all files to be considered twice
* Revised documentation configuration on ReadTheDocs to leverage Anaconda (Mambaforge)
* Minor adjustments to dependency configurations
* Update to xclim 0.40.0.
* Update to xclim 0.43.0.
* Passing an empty string to `ensemble_percentiles` in ensemble processes will return the merged un-reduced ensemble. The different members are listed along the `realization` coordinates through raw names allowing for basic distinction between the input members.
* Removed configuration elements handling from `finch start`. One can still pass custom config files, but all configuration defaults are handled by `finch/default.cfg` and the WSGI function. `jinja2` is not a dependency anymore.

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 condaforge/mambaforge
MAINTAINER https://github.com/bird-house/finch
LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.10.0"
LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.11.0"

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.10.0"
version = "0.11.0"
# The full version, including alpha/beta/rc tags.
release = "0.10.0"
release = "0.11.0"

# 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.10.0"
__version__ = "0.11.0"
18 changes: 9 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.0
current_version = 0.11.0
commit = True
tag = True

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 =
tests
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 7a3d97c

Please sign in to comment.