Skip to content

Commit ac2c02a

Browse files
authored
Prepare v0.13.2 (#496)
## Overview Changes: * Prepares the next patch release * Updates the pre-commit hooks
2 parents 7424edb + 0af7b1e commit ac2c02a

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
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.2-dev.1",
25+
"version": "0.13.2",
2626
"open_source_license": "Apache Software License 2.0",
2727
"http_port": "5000",
2828
"use_pytest": "y",

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ default_language_version:
33

44
repos:
55
- repo: https://github.com/asottile/pyupgrade
6-
rev: v3.19.1
6+
rev: v3.20.0
77
hooks:
88
- id: pyupgrade
99
args: [ '--py310-plus' ]
@@ -21,7 +21,7 @@ repos:
2121
args: [ '--autofix', '--no-ensure-ascii', '--no-sort-keys' ]
2222
exclude: ".geojson|.ipynb"
2323
- repo: https://github.com/adrienverge/yamllint.git
24-
rev: v1.37.0
24+
rev: v1.37.1
2525
hooks:
2626
- id: yamllint
2727
args: [ '--config-file=.yamllint.yaml' ]
@@ -42,12 +42,12 @@ repos:
4242
- id: black
4343
args: [ '--target-version=py310' ]
4444
- repo: https://github.com/astral-sh/ruff-pre-commit
45-
rev: v0.11.4
45+
rev: v0.11.12
4646
hooks:
4747
- id: ruff
4848
args: [ '--fix', '--show-fixes' ]
4949
- repo: https://github.com/pylint-dev/pylint
50-
rev: v3.3.6
50+
rev: v3.3.7
5151
hooks:
5252
- id: pylint
5353
args: [ '--rcfile=.pylintrc.toml', '--errors-only', '--jobs=0', '--disable=import-error' ]
@@ -90,7 +90,7 @@ repos:
9090
additional_dependencies: [ 'black==25.1.0' ]
9191
- id: blackdoc-autoupdate-black
9292
- repo: https://github.com/python-jsonschema/check-jsonschema
93-
rev: 0.32.1
93+
rev: 0.33.0
9494
hooks:
9595
- id: check-github-workflows
9696
- id: check-readthedocs

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Changelog
33
=========
44

5-
v0.14.0 (unreleased)
5+
v0.13.2 (2025-06-05)
66
--------------------
77

88
* Allow calculations of 30-year averages on ensemble processes

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.2-dev.1"
6+
LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.13.2"
77

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

pyproject.toml

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

123123
[tool.bumpversion]
124-
current_version = "0.13.2-dev.1"
124+
current_version = "0.13.2"
125125
commit = true
126126
commit_args = "--no-verify"
127127
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.2-dev.1"
9+
__version__ = "0.13.2"

0 commit comments

Comments
 (0)