Skip to content

Commit bd72dc6

Browse files
authored
🔖 Version 4.32.0 (#377)
1 parent 958d010 commit bd72dc6

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
repos:
22
- repo: https://github.com/charliermarsh/ruff-pre-commit
3-
rev: v0.14.3
3+
rev: v0.14.9
44
hooks:
5-
- id: ruff
5+
- id: ruff-check
66
args: [ --fix, --exit-non-zero-on-fix]
77
- id: ruff-format
88

9-
- repo: https://github.com/pycqa/pydocstyle
10-
rev: 6.3.0
11-
hooks:
12-
- id: pydocstyle
13-
additional_dependencies: [toml, tomli]
14-
exclude: .*(test|__init__|version).*\.py
15-
args: [
16-
"--ignore=D10,D212,D203,D401"
17-
]
18-
199
- repo: https://github.com/gitleaks/gitleaks
20-
rev: v8.28.0
10+
rev: v8.30.0
2111
hooks:
2212
- id: gitleaks
2313

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Mindee Python Client Library Changelog
22

3+
## v4.32.0 - 2025-12-16
4+
### Changes
5+
* :sparkles: add support for text_context on v2
6+
* :sparkles: add support for data schema replace on v2
7+
* :coffin: remove unused feedback calls from CLI
8+
39
## v4.31.0 - 2025-11-04
410
### Changes
511
* :label: better field typing for v2

mindee/versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
__version__ = "4.31.0"
3+
__version__ = "4.32.0"
44

55
PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}"
66

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ readme = "README.md"
1313
license = {file = "LICENSE"}
1414
classifiers = [
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
@@ -89,6 +88,10 @@ quote-style = "double"
8988
indent-style = "space"
9089
skip-magic-trailing-comma = false
9190

91+
[tool.ruff.lint]
92+
select = ["E", "F"]
93+
ignore = ["E501"]
94+
9295
[tool.mypy]
9396
disallow_any_unimported = true
9497
disallow_subclassing_any = true

0 commit comments

Comments
 (0)