From 6dde477da6dd21425c66e5066af2e9a583c87c85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philemon=20Sch=C3=B6pf?= Date: Thu, 25 Jul 2024 18:33:27 +0200 Subject: [PATCH] prepare for 0.2.1 --- CHANGELOG.md | 6 +++++- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 351e3ed..8c843b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,11 @@ The version numbers are according to [Semantic Versioning](http://semver.org/). ### Removed -## Release v0.2.x (2024-07-22) +## Release v0.2.1 (2024-07-25) +### Changed +- GoogleOCR now checks whether the credential file actually exists before setting `GOOGLE_APPLICATION_CREDENTIALS`. If none of the default locations are found, the env var is not set. This enables usage of other authentication schemes (e.g. gcloud CLI, application default credentials). + +## Release v0.2.0 (2024-07-22) ### Changed - Changed the heuristic to filter out accidentally merged bounding boxes of columns of digits in GoogleAzureOCR by changing the heuristic to use the median bbox height instead of the mean bbox area to decide what vertical boxes to filter. diff --git a/pyproject.toml b/pyproject.toml index b9534cd..0ff3d7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ocr_wrapper" -version = "0.2.0" +version = "0.2.1" license.file = "LICENSE.md" authors = [{ name = "DeepOpinion", email = "hello@deepopinion.ai" }] urls.repository = "https://github.com/deepopinion/ocr_wrapper"