diff --git a/CHANGELOG.md b/CHANGELOG.md index 451e608d..be25d9a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Mindee Python API Library Changelog +## v4.14.1 - 2024-11-22 +### Changes +* :coffin: remove support for international ID V1 +* :recycle: update import syntax +* :arrow_up: loosen dependency pinning on requests + +### Fixes +* :bug: fix potential circular import issues + + ## v4.14.0 - 2024-11-14 ### Changes * :sparkles: add support for business cards V1 diff --git a/mindee/versions.py b/mindee/versions.py index 43e46e87..9dbc7148 100644 --- a/mindee/versions.py +++ b/mindee/versions.py @@ -1,6 +1,6 @@ import sys -__version__ = "4.14.0" +__version__ = "4.14.1" python_version = f"{sys.version_info[0]}.{sys.version_info[1]}"