Skip to content

Commit 7510204

Browse files
committed
Bump version of paddle plugin for bugdix
1 parent 3c71a82 commit 7510204

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ List of changes between versions
1111
- [ ] Add <DETECT> language to allow either OCR or TSL models to detect the language automatically
1212
(Both should easy, only one could be troublesome)
1313

14+
## 0.7.1
15+
16+
- reflect bugfix in paddle plugin
17+
1418
## 0.7.0
1519

1620
### Breaking changes

ocr_translate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
###################################################################################
1919
"""OCR and translation of images."""
2020

21-
__version__ = '0.7.0'
21+
__version__ = '0.7.1'
2222
__version__array__ = [int(_) for _ in __version__.split('.')]

ocr_translate/plugins_data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@
487487
"name": "ocr_translate_paddle",
488488
"package": "ocr_translate-paddle",
489489
"description": "This is a plugin for the ocr_translate. Plugins to enable usage of PaddleOCR in ocr_translate",
490-
"version": "0.3.0",
490+
"version": "0.3.1",
491491
"homepage": "https://github.com/Crivella/ocr_translate-paddle",
492492
"dependencies": [
493493
{

release_files/run_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import subprocess
2323
import sys
2424

25-
req_version = os.environ.get('OCT_VERSION', '0.7.0').lower()
25+
req_version = os.environ.get('OCT_VERSION', '0.7.1').lower()
2626

2727
def install_upgrade(upgrade=False):
2828
"""Install or upgrade the ocr_translate package."""

0 commit comments

Comments
 (0)