diff --git a/README.md b/README.md index 18493d771..29c8603e7 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,9 @@ 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 +- 30 May 2021 - Version 1.3.2 + - Faster greedy decoder (thanks [@samayala22](https://github.com/samayala22)) + - Fix bug when text box's aspect ratio is disproportional (thanks [iQuartic](https://iquartic.com/) for bug report) - 20 April 2021 - Version 1.3.1 - Add support for PIL image (thanks [@prays](https://github.com/prays)) - Add Tajik language (tjk) @@ -21,11 +24,6 @@ Ready-to-use OCR with 80+ [supported languages](https://www.jaided.ai/easyocr) a EasyOCR will choose the latest model by default but you can also specify which model to use by passing `recog_network` argument when creating `Reader` instance. For example, `reader = easyocr.Reader(['en','fr'], recog_network = 'latin_g1')` will use the 1st generation Latin model. - List of all models: [Model hub](https://www.jaided.ai/easyocr/modelhub) -- 22 February 2021 - Version 1.2.5 - - Add dynamic quantization for faster CPU inference (it is enabled by default for CPU mode) - - More sensible confident score -- 7 February 2021 - Version 1.2.4 - - Faster CPU inference speed by using dynamic input shape (recognition rate increases by around 100% for images with a lot of text) - [Read all released notes](https://github.com/JaidedAI/EasyOCR/blob/master/releasenotes.md) diff --git a/easyocr/__init__.py b/easyocr/__init__.py index fb267b4c7..33932805a 100644 --- a/easyocr/__init__.py +++ b/easyocr/__init__.py @@ -1,3 +1,3 @@ from .easyocr import Reader -__version__ = '1.3.1' +__version__ = '1.3.2' diff --git a/releasenotes.md b/releasenotes.md index dddc134b2..a86a77f20 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -1,3 +1,6 @@ +- 30 May 2021 - Version 1.3.2 + - Faster greedy decoder (thanks [@samayala22](https://github.com/samayala22)) + - Fix bug when text box's aspect ratio is disproportional (thanks [iQuartic](https://iquartic.com/) for bug report) - 20 April 2021 - Version 1.3.1 - Add support for PIL image (thanks [@prays](https://github.com/prays)) - Add Tajik language (tjk) diff --git a/setup.py b/setup.py index 1bef345bc..bedce76ab 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ def readme(): name='easyocr', packages=['easyocr'], include_package_data=True, - version='1.3.1', + version='1.3.2', install_requires=requirements, entry_points={"console_scripts": ["easyocr= easyocr.cli:main"]}, license='Apache License 2.0',