From d9138802c03d62ea57bae03dc35e1344f63f6048 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ianar=C3=A9=20S=C3=A9vi?= Date: Tue, 16 Dec 2025 11:21:37 +0100 Subject: [PATCH] :bookmark: Version 4.32.0 --- .pre-commit-config.yaml | 16 +++------------- CHANGELOG.md | 6 ++++++ mindee/versions.py | 2 +- pyproject.toml | 5 ++++- 4 files changed, 14 insertions(+), 15 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5f98b32e..312ff209 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,23 +1,13 @@ repos: - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: v0.14.3 + rev: v0.14.9 hooks: - - id: ruff + - id: ruff-check args: [ --fix, --exit-non-zero-on-fix] - id: ruff-format - - repo: https://github.com/pycqa/pydocstyle - rev: 6.3.0 - hooks: - - id: pydocstyle - additional_dependencies: [toml, tomli] - exclude: .*(test|__init__|version).*\.py - args: [ - "--ignore=D10,D212,D203,D401" - ] - - repo: https://github.com/gitleaks/gitleaks - rev: v8.28.0 + rev: v8.30.0 hooks: - id: gitleaks diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d180b9b..e042f1f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Mindee Python Client Library Changelog +## v4.32.0 - 2025-12-16 +### Changes +* :sparkles: add support for text_context on v2 +* :sparkles: add support for data schema replace on v2 +* :coffin: remove unused feedback calls from CLI + ## v4.31.0 - 2025-11-04 ### Changes * :label: better field typing for v2 diff --git a/mindee/versions.py b/mindee/versions.py index 72f9e2ab..658af459 100644 --- a/mindee/versions.py +++ b/mindee/versions.py @@ -1,6 +1,6 @@ import sys -__version__ = "4.31.0" +__version__ = "4.32.0" PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}" diff --git a/pyproject.toml b/pyproject.toml index fad98cd1..469f6312 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,6 @@ readme = "README.md" license = {file = "LICENSE"} classifiers = [ "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -89,6 +88,10 @@ quote-style = "double" indent-style = "space" skip-magic-trailing-comma = false +[tool.ruff.lint] +select = ["E", "F"] +ignore = ["E501"] + [tool.mypy] disallow_any_unimported = true disallow_subclassing_any = true