From ab1334951248b3d0ac9820b41c555b137b161d7a Mon Sep 17 00:00:00 2001 From: rkcosmos Date: Sat, 9 Apr 2022 14:40:42 +0700 Subject: [PATCH] v1.4.2 --- README.md | 2 ++ easyocr/__init__.py | 2 +- releasenotes.md | 2 ++ setup.py | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3bd53928bd..498adfa3c8 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,8 @@ Ready-to-use OCR with 80+ [supported languages](https://www.jaided.ai/easyocr) a [Try Demo on our website](https://www.jaided.ai/easyocr) ## What's new +- 9 April 2022 - Version 1.4.2 + - Update dependencies (opencv and pillow issues) - 11 September 2021 - Version 1.4.1 - Add trainer folder - Add `readtextlang` method (thanks[@arkya-art](https://github.com/arkya-art), see [PR](https://github.com/JaidedAI/EasyOCR/pull/525)) diff --git a/easyocr/__init__.py b/easyocr/__init__.py index 0840f11509..294d3887b5 100644 --- a/easyocr/__init__.py +++ b/easyocr/__init__.py @@ -1,3 +1,3 @@ from .easyocr import Reader -__version__ = '1.4.1' +__version__ = '1.4.2' diff --git a/releasenotes.md b/releasenotes.md index 5c6deab7e8..70a79aeaf0 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -1,3 +1,5 @@ +- 9 April 2022 - Version 1.4.2 + - Update dependencies (opencv and pillow issues) - 11 September 2021 - Version 1.4.1 - Add trainer folder - Add `readtextlang` method (thanks[@arkya-art](https://github.com/arkya-art), see [PR](https://github.com/JaidedAI/EasyOCR/pull/525)) diff --git a/setup.py b/setup.py index 22007ea5c1..04e4a0530e 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ def readme(): name='easyocr', packages=['easyocr'], include_package_data=True, - version='1.4.1', + version='1.4.2', install_requires=requirements, entry_points={"console_scripts": ["easyocr= easyocr.cli:main"]}, license='Apache License 2.0',