diff --git a/CHANGELOG.md b/CHANGELOG.md index f50ebd1b..2a15c1bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Mindee Python Client Library Changelog +## v4.28.0 - 2025-09-02 +### Changes +* :sparkles: add list field typed accessors +* :recycle: rework polygons, use them more like a real class +* :sparkles: add inference options +### ¡Breaking Changes! +* :recycle: :boom: update raw text output from server + + ## v4.27.1 - 2025-08-22 ### Changes * :recycle: use direct import of input classes diff --git a/mindee/versions.py b/mindee/versions.py index 75b78abe..9a0f4d37 100644 --- a/mindee/versions.py +++ b/mindee/versions.py @@ -1,6 +1,6 @@ import sys -__version__ = "4.27.1" +__version__ = "4.28.0" PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}"