diff --git a/CHANGELOG.md b/CHANGELOG.md index ca424e76..9c4cc0e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Mindee Python Client Library Changelog +## v4.27.0 - 2025-07-30 +### Changes +* :sparkles: add support for page count, mimetype + fixes +### Fixes +* :bug: fix jobs not deserializing webhook information into their proper class +* :bug: fix typo in `InferenceFile` class: `alais` => `alias` + + ## v4.26.0 - 2025-07-29 ### Changes * :sparkles: add support for URL inputs for V2 diff --git a/mindee/versions.py b/mindee/versions.py index 5e9ab08b..85812df1 100644 --- a/mindee/versions.py +++ b/mindee/versions.py @@ -1,6 +1,6 @@ import sys -__version__ = "4.26.0" +__version__ = "4.27.0" PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}"