diff --git a/CHANGELOG.md b/CHANGELOG.md index 452cceb..57096a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,17 @@ The version numbers are according to [Semantic Versioning](http://semver.org/). ## Release v0.0.x () ### Added -- Added support to detect and decode QR-codes as well as different forms of barcodes to all OCR wrappers. Internally, the zbar library is used. The QR/bar-codes will be added as bounding boxes, and the contained information is returned as the OCR text. The text is formatted in the form `TYPE[[DATA]]` (e.g. `QRCODE[[Encoded Information]]`). Valid types can be found in the `pyzbar.pyzbar.ZBarSymbol` enum. For this to work, the argument `add_qr_barcodes=True` has to be supplied when creating the wrapper (default is `False`) and the `pyzbar` Python library, as well as the zbar system library have to be installed (install ocr_wrapper with the optional dependecy `qr_barcodes`. + ### Fixed ### Changed ### Removed +## Release v0.0.26 (2024-04-29) +### Added +- Added support to detect and decode QR-codes as well as different forms of barcodes to all OCR wrappers. Internally, the zbar library is used. The QR/bar-codes will be added as bounding boxes, and the contained information is returned as the OCR text. The text is formatted in the form `TYPE[[DATA]]` (e.g. `QRCODE[[Encoded Information]]`). Valid types can be found in the `pyzbar.pyzbar.ZBarSymbol` enum. For this to work, the argument `add_qr_barcodes=True` has to be supplied when creating the wrapper (default is `False`) and the `pyzbar` Python library, as well as the zbar system library have to be installed (install ocr_wrapper with the optional dependecy `qr_barcodes`. + ## Release v0.0.25 (2024-04-23) ### Added - Optional dependencies for the specific OCR solutions can now be installed via dependency groups, using e.g. `ocr_wrapper[google,azure]` diff --git a/pyproject.toml b/pyproject.toml index 2c9a1c0..975029c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ocr_wrapper" -version = "0.0.25" +version = "0.0.26" license.file = "LICENSE.md" authors = [{ name = "DeepOpinion", email = "hello@deepopinion.ai" }] urls.repository = "https://github.com/deepopinion/ocr_wrapper"