Skip to content

Commit

Permalink
Prepares for v0.0.26 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Paethon committed Apr 29, 2024
1 parent 1c9a25f commit 14da07a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 14da07a

Please sign in to comment.