Skip to content

Commit

Permalink
Bump version to v2.26.0 (#9373)
Browse files Browse the repository at this point in the history
* init

* Update changelog.md

* Update README.md

* Update README_zh-CN.md

* Update changelog.md

* Update docs/en/changelog.md

Co-authored-by: RangiLyu <lyuchqi@gmail.com>

Co-authored-by: RangiLyu <lyuchqi@gmail.com>
  • Loading branch information
zytx121 and RangiLyu authored Nov 23, 2022
1 parent 5fb38fa commit 31c8495
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 8 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,9 @@ Apart from MMDetection, we also released a library [mmcv](https://github.com/ope

### 💎 Stable version

**2.25.2** was released in 15/9/2022:
**2.26.0** was released in 23/11/2022:

- Fix bugs in Dynamic Head and Swin Transformer.
- Refine docstring and documentation.
- Support training on [NPU](docs/en/device/npu.md).

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 @@ -76,10 +76,9 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope

### 💎 稳定版本

最新的 **2.25.2** 版本已经在 2022.09.15 发布:
最新的 **2.26.0** 版本已经在 2022.11.23 发布:

- 修复 Dynamic Head 和 Swin Transformer 中的错误。
- 优化注释和文档。
- 支持在 [NPU](docs/en/device/npu.md) 上进行训练。

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

Expand Down
2 changes: 1 addition & 1 deletion docker/serve/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG CUDNN="7"
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel

ARG MMCV="1.3.17"
ARG MMDET="2.25.3"
ARG MMDET="2.26.0"

ENV PYTHONUNBUFFERED TRUE

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

### v2.26.0 (23/11/2022)

#### Highlights

- Support training on [NPU](docs/en/device/npu.md) (#9267)

#### Bug Fixes

- Fix RPN visualization (#9151)
- Fix readthedocs by freezing the dependency versions (#9154)
- Fix device argument error in MMDet_Tutorial.ipynb (#9112)
- Fix solov2 cannot dealing with empty gt image (#9185)
- Fix random flipping ratio comparison of mixup image (#9336)

#### Improvements

- Complement necessary argument of seg_suffix of cityscapes (#9330)
- Support copy paste based on bbox when there is no gt mask (#8905)
- Make scipy as a default dependency in runtime (#9186)

#### Documents

- Delete redundant Chinese characters in docs (#9175)
- Add MMEval in README (#9217)

#### Contributors

A total of 11 developers contributed to this release.
Thanks @wangjiangben-hw, @motokimura, @AdorableJiang, @BainOuO, @JarvisKevin, @wanghonglie, @zytx121, @BIGWangYuDong, @hhaAndroid, @RangiLyu, @ZwwWayne

### v2.25.3 (25/10/2022)

#### Bug Fixes
Expand Down
1 change: 1 addition & 0 deletions docs/en/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ We list some common troubles faced by many users and their corresponding solutio
| MMDetection version | MMCV version |
| :-----------------: | :------------------------: |
| master | mmcv-full>=1.3.17, \<1.8.0 |
| 2.26.0 | mmcv-full>=1.3.17, \<1.8.0 |
| 2.25.3 | mmcv-full>=1.3.17, \<1.7.0 |
| 2.25.2 | mmcv-full>=1.3.17, \<1.7.0 |
| 2.25.1 | mmcv-full>=1.3.17, \<1.6.0 |
Expand Down
1 change: 1 addition & 0 deletions docs/zh_cn/get_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ MMDetection 和 MMCV 版本兼容性如下所示,需要安装正确的 MMCV
| MMDetection 版本 | MMCV 版本 |
| :--------------: | :------------------------: |
| master | mmcv-full>=1.3.17, \<1.8.0 |
| 2.26.0 | mmcv-full>=1.3.17, \<1.8.0 |
| 2.25.3 | mmcv-full>=1.3.17, \<1.7.0 |
| 2.25.2 | mmcv-full>=1.3.17, \<1.7.0 |
| 2.25.1 | mmcv-full>=1.3.17, \<1.6.0 |
Expand Down
2 changes: 1 addition & 1 deletion mmdet/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) OpenMMLab. All rights reserved.

__version__ = '2.25.3'
__version__ = '2.26.0'
short_version = __version__


Expand Down

0 comments on commit 31c8495

Please sign in to comment.