Skip to content

Commit ab7cebb

Browse files
committed
v1.5.0
1 parent 4526a7b commit ab7cebb

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Integrated into [Huggingface Spaces 🤗](https://huggingface.co/spaces) using [
1414

1515

1616
## What's new
17+
- 2 June 2022 - Version 1.5.0
18+
- Add trainer for CRAFT detection model (thanks[@gmuffiness](https://github.com/gmuffiness), see [PR](https://github.com/JaidedAI/EasyOCR/pull/739))
1719
- 9 April 2022 - Version 1.4.2
1820
- Update dependencies (opencv and pillow issues)
1921
- 11 September 2021 - Version 1.4.1
@@ -133,7 +135,7 @@ $ easyocr -l ch_sim en -f chinese.jpg --detail=1 --gpu=True
133135

134136
For recognition model, [Read here](https://github.com/JaidedAI/EasyOCR/blob/master/custom_model.md).
135137

136-
For detection model (CRAFT), [Read here](https://github.com/JaidedAI/EasyOCR/blob/master/trainer/craft/README.md).
138+
For detection model (CRAFT), [Read here](https://github.com/JaidedAI/EasyOCR/blob/master/trainer/craft/README.md).
137139

138140
## Implementation Roadmap
139141

easyocr/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .easyocr import Reader
22

3-
__version__ = '1.4.2'
3+
__version__ = '1.5.0'

releasenotes.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- 2 June 2022 - Version 1.5.0
2+
- Add trainer for CRAFT detection model (thanks[@gmuffiness](https://github.com/gmuffiness), see [PR](https://github.com/JaidedAI/EasyOCR/pull/739))
13
- 9 April 2022 - Version 1.4.2
24
- Update dependencies (opencv and pillow issues)
35
- 11 September 2021 - Version 1.4.1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def readme():
1717
name='easyocr',
1818
packages=['easyocr'],
1919
include_package_data=True,
20-
version='1.4.2',
20+
version='1.5.0',
2121
install_requires=requirements,
2222
entry_points={"console_scripts": ["easyocr= easyocr.cli:main"]},
2323
license='Apache License 2.0',

0 commit comments

Comments
 (0)