Skip to content

Commit 85f3473

Browse files
authored
Bump version to 0.6.2 (#1450)
* Bump version to 0.6.2 * fix ci * fix * update date and 1.0 version
1 parent 98ceffd commit 85f3473

File tree

9 files changed

+68
-14
lines changed

9 files changed

+68
-14
lines changed

.circleci/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
name: Install Libraries
5151
command: |
5252
sudo apt-get update
53-
sudo apt-get install -y ninja-build libglib2.0-0 libsm6 libxrender-dev libxext6 libgl1-mesa-glx libjpeg-dev zlib1g-dev libtinfo-dev libncurses5
53+
sudo apt-get install -y ninja-build libglib2.0-0 libsm6 libxrender-dev libxext6 libgl1-mesa-glx libjpeg-dev zlib1g-dev libtinfo-dev libncurses5 libgeos-dev
5454
- run:
5555
name: Configure Python & pip
5656
command: |

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,19 +71,20 @@ The main branch works with **PyTorch 1.6+**.
7171

7272
## What's New
7373

74+
While the stable version (0.6.2) and the preview version (1.0.0) are being maintained concurrently now, the former version will be deprecated by the end of 2022. Therefore, we recommend users upgrade to [MMOCR 1.0](https://github.com/open-mmlab/mmocr/tree/1.x) to fruitful new features and better performance brought by the new architecture. Check out our [maintenance plan](https://mmocr.readthedocs.io/en/dev-1.x/migration/overview.html) for how we will maintain them in the future.
75+
7476
### 💎 Stable version
7577

76-
v0.6.1 was released in 2022-08-04.
78+
v0.6.2 was released in 2022-10-14.
7779

78-
1. ArT dataset is available for text detection and recognition!
79-
2. Fix several bugs that affects the correctness of the models.
80-
3. Thanks to [MIM](https://github.com/open-mmlab/mim), our installation is much simpler now! The [docs](https://mmocr.readthedocs.io/en/latest/install.html) has been renewed as well.
80+
1. It's now possible to train/test models through Python Interface.
81+
2. ResizeOCR now fully supports all the parameters in mmcv.impad.
8182

8283
Read [Changelog](https://mmocr.readthedocs.io/en/latest/changelog.html) for more details!
8384

8485
### 🌟 Preview of 1.x version
8586

86-
A brand new version of **MMOCR v1.0.0rc0** was released in 2022-09-01:
87+
A brand new version of **MMOCR v1.0.0rc2** was released in 2022-10-14:
8788

8889
1. **New engines**. MMOCR 1.x is based on [MMEngine](https://github.com/open-mmlab/mmengine), which provides a general and powerful runner that allows more flexible customizations and significantly simplifies the entrypoints of high-level interfaces.
8990

README_zh-CN.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,20 @@ MMOCR 的模块化设计使用户可以定义自己的优化器,数据预处
7272

7373
## 最新进展
7474

75+
目前我们正同步维护稳定版 (0.6.2) 和预览版 (1.0.0) 的 MMOCR,但稳定版会在 2022 年末开始逐步停止维护。我们建议用户尽早升级至 [MMOCR 1.0](https://github.com/open-mmlab/mmocr/tree/1.x),以享受到由新架构带来的更多新特性和更佳的性能表现。阅读我们的[维护计划](https://mmocr.readthedocs.io/zh_CN/dev-1.x/migration/overview.html)以了解更多信息。
76+
7577
### 💎 稳定版本
7678

77-
最新的月度版本 v0.6.1 在 2022.08.04 发布。
79+
最新的月度版本 v0.6.2 在 2022.10.14 发布。
7880

79-
1. 对文本检测和识别任务,新支持了 ArT 数据集。
80-
2. 修复了多个可能影响模型正确性的错误。
81-
3. 使用 MIM 对安装步骤进行了简化,我们的[安装文档](https://mmocr.readthedocs.io/zh_CN/latest/install.html)亦有了同步更新。
81+
1. 支持在 Python 内直接训练和测试模型。
82+
2. ResizeOCR 支持了 mmcv.impad 的所有参数。
8283

8384
阅读[更新日志](https://mmocr.readthedocs.io/en/latest/changelog.html)以获取更多信息。
8485

8586
### 🌟 1.x 预览版本
8687

87-
全新的 **v1.0.0rc0** 版本已经在 2022.09.01 发布:
88+
全新的 **v1.0.0rc2** 版本已经在 2022.10.14 发布:
8889

8990
1. 架构升级:MMOCR 1.x 是基于 [MMEngine](https://github.com/open-mmlab/mmengine),提供了一个通用的、强大的执行器,允许更灵活的定制,提供了统一的训练和测试入口。
9091

docs/en/changelog.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,55 @@
11
# Changelog
22

3+
## 0.6.2 (14/10/2022)
4+
5+
### Highlights
6+
7+
It's now possible to train/test models through Python Interface. For example, you can train a model under mmocr/ directory in this way:
8+
9+
```python
10+
# an example of how to use such modifications is shown as the following:
11+
from mmocr.tools.train import TrainArg, parse_args, run_train_cmd
12+
args = TrainArg(config='/path/to/config.py')
13+
args.add_arg('--work-dir', '/path/to/dir')
14+
args = parse_args(args.arg_list)
15+
run_train_cmd(args)
16+
```
17+
18+
See PR [#1138](https://github.com/open-mmlab/mmocr/pull/1138) for more details.
19+
20+
Besides, release candidates for MMOCR 1.0 with tons of new features are available at [1.x branch](https://github.com/open-mmlab/mmocr/tree/1.x) now! Check out the [changelog](https://mmocr.readthedocs.io/en/dev-1.x/notes/changelog.html) for more information about the features, and [maintenance plan](https://mmocr.readthedocs.io/en/dev-1.x/migration/overview.html) for how we will maintain MMOCR in the future.
21+
22+
### New Features
23+
24+
- Adding test & train API to be used directly in code by @wybryan in https://github.com/open-mmlab/mmocr/pull/1138
25+
- Let ResizeOCR full support mmcv.impad's pad_val parameters by @hsiehpinghan in https://github.com/open-mmlab/mmocr/pull/1437
26+
27+
### Bug Fixes
28+
29+
- Fix ABINet config by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1256
30+
- Fix Recognition Score Normalization Issue by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1333
31+
- Remove max_seq_len inconsistency by @antoniolanza1996 in https://github.com/open-mmlab/mmocr/pull/1433
32+
- box points ordering by @yjmm10 in https://github.com/open-mmlab/mmocr/pull/1205
33+
- Correct spelling by misspelling 'preperties' to 'properties' by @JunYao1020 in https://github.com/open-mmlab/mmocr/pull/1446
34+
35+
### Docs
36+
37+
- Demo, experiments and live inference API on Tiyaro by @Venkat2811 in https://github.com/open-mmlab/mmocr/pull/1272
38+
- Update 1.x info by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1369
39+
- Add global notes to the docs and the version switcher menu by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1406
40+
- Logger Hook Config Updated to Add WandB by @Nourollah in https://github.com/open-mmlab/mmocr/pull/1345
41+
42+
### New Contributors
43+
44+
- @Venkat2811 made their first contribution in https://github.com/open-mmlab/mmocr/pull/1272
45+
- @wybryan made their first contribution in https://github.com/open-mmlab/mmocr/pull/1139
46+
- @hsiehpinghan made their first contribution in https://github.com/open-mmlab/mmocr/pull/1437
47+
- @yjmm10 made their first contribution in https://github.com/open-mmlab/mmocr/pull/1205
48+
- @JunYao1020 made their first contribution in https://github.com/open-mmlab/mmocr/pull/1446
49+
- @Nourollah made their first contribution in https://github.com/open-mmlab/mmocr/pull/1345
50+
51+
**Full Changelog**: https://github.com/open-mmlab/mmocr/compare/v0.6.1...v0.6.2
52+
353
## 0.6.1 (04/08/2022)
454

555
### Highlights

docs/en/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@
134134
'will soon be deprecated by the end of 2022. We recommend you upgrade '
135135
'to MMOCR 1.0 to enjoy fruitful new features and better performance '
136136
' brought by OpenMMLab 2.0. Check out the '
137+
'<a href="https://mmocr.readthedocs.io/en/dev-1.x/migration/overview.html">maintenance plan</a>, ' # noqa
137138
'<a href="https://github.com/open-mmlab/mmocr/releases">changelog</a>, ' # noqa
138139
'<a href="https://github.com/open-mmlab/mmocr/tree/1.x">code</a> ' # noqa
139140
'and <a href="https://mmocr.readthedocs.io/en/dev-1.x/">documentation</a> of MMOCR 1.0 for more details.', # noqa

docs/en/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ MMOCR has different version requirements on MMCV and MMDetection at each release
215215
| MMOCR | MMCV | MMDetection |
216216
| ------------ | ------------------------ | --------------------------- |
217217
| main | 1.3.8 \<= mmcv \<= 1.7.0 | 2.21.0 \<= mmdet \<= 3.0.0 |
218-
| 0.6.1 | 1.3.8 \<= mmcv \<= 1.7.0 | 2.21.0 \<= mmdet \<= 3.0.0 |
218+
| 0.6.1, 0.6.2 | 1.3.8 \<= mmcv \<= 1.7.0 | 2.21.0 \<= mmdet \<= 3.0.0 |
219219
| 0.6.0 | 1.3.8 \<= mmcv \<= 1.6.0 | 2.21.0 \<= mmdet \<= 3.0.0 |
220220
| 0.5.0 | 1.3.8 \<= mmcv \<= 1.5.0 | 2.14.0 \<= mmdet \<= 3.0.0 |
221221
| 0.4.0, 0.4.1 | 1.3.8 \<= mmcv \<= 1.5.0 | 2.14.0 \<= mmdet \<= 2.20.0 |

docs/zh_cn/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@
135135
'您正在阅读 MMOCR 0.x 版本的文档。MMOCR 0.x 会在 2022 年末开始'
136136
'逐步停止维护,建议您及时升级到 MMOCR 1.0 版本,享受由 OpenMMLab '
137137
'2.0 带来的更多新特性和更佳的性能表现。阅读 MMOCR 1.0 的'
138+
'<a href="https://mmocr.readthedocs.io/zh_CN/dev-1.x/migration/overview.html">维护计划</a>、 ' # noqa
138139
'<a href="https://github.com/open-mmlab/mmocr/releases">发版日志</a>、 ' # noqa
139140
'<a href="https://github.com/open-mmlab/mmocr/tree/1.x">代码</a> ' # noqa
140141
'和 <a href="https://mmocr.readthedocs.io/zh_CN/dev-1.x/">文档</a> 以了解更多。', # noqa

docs/zh_cn/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ docker run --gpus all --shm-size=8g -it -v {实际数据目录}:/mmocr/data mmoc
216216
| MMOCR | MMCV | MMDetection |
217217
| ------------ | ------------------------ | --------------------------- |
218218
| main | 1.3.8 \<= mmcv \<= 1.7.0 | 2.21.0 \<= mmdet \<= 3.0.0 |
219-
| v0.6.1 | 1.3.8 \<= mmcv \<= 1.7.0 | 2.21.0 \<= mmdet \<= 3.0.0 |
219+
| 0.6.1, 0.6.2 | 1.3.8 \<= mmcv \<= 1.7.0 | 2.21.0 \<= mmdet \<= 3.0.0 |
220220
| 0.6.0 | 1.3.8 \<= mmcv \<= 1.6.0 | 2.21.0 \<= mmdet \<= 3.0.0 |
221221
| 0.5.0 | 1.3.8 \<= mmcv \<= 1.5.0 | 2.14.0 \<= mmdet \<= 3.0.0 |
222222
| 0.4.0, 0.4.1 | 1.3.8 \<= mmcv \<= 1.5.0 | 2.14.0 \<= mmdet \<= 2.20.0 |

mmocr/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Open-MMLab. All rights reserved.
22

3-
__version__ = '0.6.1'
3+
__version__ = '0.6.2'
44
short_version = __version__

0 commit comments

Comments
 (0)