Skip to content

Commit 601a84d

Browse files
authored
Prepare v0.13.1 (#466)
## Overview Changes: * Prepared the next patch version (v0.13.1; for release on 2025-02-13) * Fixed a bad conda configuration * Updated pre-commit hooks
2 parents fc9cf37 + 4bcea60 commit 601a84d

File tree

7 files changed

+18
-14
lines changed

7 files changed

+18
-14
lines changed

.cruft.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"project_repo_name": "finch",
2323
"project_readthedocs_name": "finch",
2424
"project_short_description": "A Web Processing Service for Climate Indicators.",
25-
"version": "0.13.0",
25+
"version": "0.13.1",
2626
"open_source_license": "Apache Software License 2.0",
2727
"http_port": "5000",
2828
"use_pytest": "y",

.pre-commit-config.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ repos:
3737
- id: rst-inline-touching-normal
3838
- id: text-unicode-replacement-char
3939
- repo: https://github.com/psf/black-pre-commit-mirror
40-
rev: 24.10.0
40+
rev: 25.1.0
4141
hooks:
4242
- id: black
4343
args: [ '--target-version=py310' ]
4444
- repo: https://github.com/astral-sh/ruff-pre-commit
45-
rev: v0.8.6
45+
rev: v0.9.6
4646
hooks:
4747
- id: ruff
4848
args: [ '--fix', '--show-fixes' ]
4949
- repo: https://github.com/pylint-dev/pylint
50-
rev: v3.3.3
50+
rev: v3.3.4
5151
hooks:
5252
- id: pylint
5353
args: [ '--rcfile=.pylintrc.toml', '--errors-only', '--jobs=0', '--disable=import-error' ]
@@ -58,25 +58,25 @@ repos:
5858
additional_dependencies: [ 'flake8-rst-docstrings==0.3.0' ]
5959
args: [ '--config=.flake8' ]
6060
- repo: https://github.com/jendrikseipp/vulture
61-
rev: 'v2.14'
61+
rev: v2.14
6262
hooks:
6363
- id: vulture
6464
- repo: https://github.com/PyCQA/isort
65-
rev: 5.13.2
65+
rev: 6.0.0
6666
hooks:
6767
- id: isort
6868
- repo: https://github.com/nbQA-dev/nbQA
6969
rev: 1.9.1
7070
hooks:
7171
- id: nbqa-black
7272
args: [ '--target-version=py310' ]
73-
additional_dependencies: [ 'black==24.10.0' ]
73+
additional_dependencies: [ 'black==25.1.0' ]
7474
- id: nbqa-pyupgrade
7575
args: [ '--py310-plus' ]
7676
additional_dependencies: [ 'pyupgrade==3.19.1' ]
7777
- id: nbqa-isort
7878
args: [ '--settings-file=pyproject.toml' ]
79-
additional_dependencies: [ 'isort==5.13.2' ]
79+
additional_dependencies: [ 'isort==6.0.0' ]
8080
- repo: https://github.com/kynan/nbstripout
8181
rev: 0.8.1
8282
hooks:
@@ -87,10 +87,10 @@ repos:
8787
rev: v0.3.9
8888
hooks:
8989
- id: blackdoc
90-
additional_dependencies: [ 'black==24.10.0' ]
90+
additional_dependencies: [ 'black==25.1.0' ]
9191
- id: blackdoc-autoupdate-black
9292
- repo: https://github.com/python-jsonschema/check-jsonschema
93-
rev: 0.30.0
93+
rev: 0.31.1
9494
hooks:
9595
- id: check-github-workflows
9696
- id: check-readthedocs

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog
33
=========
44

5+
v0.13.1 (2025-02-13)
6+
--------------------
7+
8+
* Allowed for the use of four (4) emissions scenarios in the `ensemble_percentiles` process.
9+
510
v0.13.0 (2025-01-20)
611
--------------------
712

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM condaforge/mambaforge
33
ARG DEBIAN_FRONTEND=noninteractive
44
ENV PIP_ROOT_USER_ACTION=ignore
55
LABEL org.opencontainers.image.authors="https://github.com/bird-house/finch"
6-
LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.13.0"
6+
LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.13.1"
77

88
# Set the working directory to /code
99
WORKDIR /code

environment-dev.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: finch
22
channels:
33
- conda-forge
4-
- defaults
54
dependencies:
65
- python >=3.10,<3.13
76
- pywps >=4.6

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ target-version = [
120120
]
121121

122122
[tool.bumpversion]
123-
current_version = "0.13.0"
123+
current_version = "0.13.1"
124124
commit = true
125125
commit_args = "--no-verify"
126126
tag = false

src/finch/__version__.py

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

77
__author__ = """David Huard"""
88
__email__ = "[email protected]"
9-
__version__ = "0.13.0"
9+
__version__ = "0.13.1"

0 commit comments

Comments
 (0)