Skip to content

Commit

Permalink
Bump version to v0.3.1 (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
zytx121 authored Jun 6, 2022
1 parent ad61f2f commit d6ff82d
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 7 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@ https://user-images.githubusercontent.com/10410257/154433305-416d129b-60c8-44c7-

## Changelog

**0.3.0** was released in 29/4/2022:
**0.3.1** was released in 6/6/2022:

- Support TorchServe (#160)
- Support Rotated ATSS (CVPR'20) (#179)
- Support Rotated FCOS (#223)

Please refer to [changelog.md](docs/en/changelog.md) for details and release history.

Expand Down
5 changes: 2 additions & 3 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,9 @@ https://user-images.githubusercontent.com/10410257/154433305-416d129b-60c8-44c7-

## 更新日志

最新的 **0.3.0** 版本已经在 2022.04.29 发布:
最新的 **0.3.1** 版本已经在 2022.06.06 发布:

- 支持了 TorchServe (#160)
- 支持了 Rotated ATSS-OBB (CVPR'20) 模型 (#179)
- 支持了 Rotated FCOS 模型 (#223)

如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/en/changelog.md)

Expand Down
33 changes: 33 additions & 0 deletions docs/en/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
## Changelog

### v0.3.1 (6/6/2022)

#### Highlight

- Support Rotated FCOS (#223)

#### New Features

- Update PolyRandomRotate to support discrete angle value. (#281)
- Support RRandomCrop. (#322)
- Support mask in merge_results and huge_image_demo.py. (#280)
- Support don't filter images without ground truths. (#323)
- Add MultiImageMixDataset in build_dataset. (#331)

#### Bug Fixes

- Fix error in Windows CI. (#324)
- Fix data path error in config files. (#328)
- Fix bug when visualize the HRSC2016 detect results. (#329)

#### Improvements

- Add torchserve doc in zh_cn. (#287)
- Fix doc typo in README. (#284)
- Configure Myst-parser to parse anchor tag (#305 #308)
- Replace markdownlint with mdformat for avoiding installing ruby. (#306)
- Fix typo about split gap of multi scale. (#272)

#### Contributors

A total of 7 developers contributed to this release.
Thanks @liuyanyi @nijkah @remi-or @yangxue0827 @jbwang1997 @zytx121 @ZwwWayne

### v0.3.0 (29/4/2022)

#### Highlight
Expand Down
1 change: 1 addition & 0 deletions docs/en/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Compatible MMCV, MMClassification and MMDetection versions are shown as below. P
| MMRotate version | MMCV version | MMDetection version |
| :--------------: | :-----------------------: | :-----------------: |
| main | mmcv-full>=1.4.5, \<1.6.0 | mmdet >= 2.22.0 |
| 0.3.1 | mmcv-full>=1.4.5, \<1.6.0 | mmdet >= 2.22.0 |
| 0.3.0 | mmcv-full>=1.4.5, \<1.6.0 | mmdet >= 2.22.0 |
| 0.2.0 | mmcv-full>=1.4.5, \<1.5.0 | mmdet >= 2.19.0 |
| 0.1.1 | mmcv-full>=1.4.5, \<1.5.0 | mmdet >= 2.19.0 |
Expand Down
1 change: 1 addition & 0 deletions docs/zh_cn/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ MMRotate 和 MMCV, MMDet 版本兼容性如下所示,需要安装正确的版
| MMRotate 版本 | MMCV 版本 | MMDetection 版本 |
| :---------: | :-----------------------: | :-------------: |
| main | mmcv-full>=1.4.5, \<1.6.0 | mmdet >= 2.22.0 |
| 0.3.1 | mmcv-full>=1.4.5, \<1.6.0 | mmdet >= 2.22.0 |
| 0.3.0 | mmcv-full>=1.4.5, \<1.6.0 | mmdet >= 2.22.0 |
| 0.2.0 | mmcv-full>=1.4.5, \<1.5.0 | mmdet >= 2.19.0 |
| 0.1.1 | mmcv-full>=1.4.5, \<1.5.0 | mmdet >= 2.19.0 |
Expand Down
2 changes: 1 addition & 1 deletion mmrotate/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) OpenMMLab. All rights reserved.

__version__ = '0.3.0'
__version__ = '0.3.1'
short_version = __version__


Expand Down

0 comments on commit d6ff82d

Please sign in to comment.