Skip to content

Commit

Permalink
Bump version to 2.25.2 (#8806)
Browse files Browse the repository at this point in the history
* update v2.25.2 changelog

* update v2.25.2 changelog
  • Loading branch information
RangiLyu committed Sep 16, 2022
1 parent 1c702cc commit 9d3e162
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 14 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,10 @@ Apart from MMDetection, we also released a library [mmcv](https://github.com/ope

### 💎 Stable version

**2.25.0** was released in 1/6/2022:
**2.25.2** was released in 15/9/2022:

- Support dedicated `MMDetWandbHook` hook
- Support [ConvNeXt](configs/convnext), [DDOD](configs/ddod), [SOLOv2](configs/solov2)
- Support [Mask2Former](configs/mask2former) for instance segmentation
- Rename [config files of Mask2Former](configs/mask2former)
- Fix bugs in Dynamic Head and Swin Transformer.
- Refine docstring and documentation.

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

Expand Down
8 changes: 3 additions & 5 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,10 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope

### 💎 稳定版本

最新的 **2.25.0** 版本已经在 2022.06.01 发布:
最新的 **2.25.2** 版本已经在 2022.09.15 发布:

- 支持功能更丰富的 `MMDetWandbHook`
- 支持算法 [ConvNeXt](configs/convnext), [DDOD](configs/ddod)[SOLOv2](configs/solov2)
- [Mask2Former](configs/mask2former) 支持实例分割
- 为了加入 Mask2Former 实例分割的模型,对 Mask2Former 原有的全景分割的配置文件进行了重命名
- 修复 Dynamic Head 和 Swin Transformer 中的错误。
- 优化注释和文档。

如果想了解更多版本更新细节和历史信息,请阅读[更新日志](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.1"
ARG MMDET="2.25.2"

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.25.2 (15/9/2022)

#### Bug Fixes

- Fix DyDCNv2 RuntimeError (#8485)
- Fix repeated import of CascadeRPNHead (#8578)
- Fix absolute positional embedding of swin backbone (#8127)
- Fix get train_pipeline method of val workflow (#8575)

#### Improvements

- Upgrade onnxsim to at least 0.4.0 (#8383)
- Support tuple format in analyze_results script (#8549)
- Fix floordiv warning (#8648)

#### Documents

- Fix typo in HTC link (#8487)
- Fix docstring of `BboxOverlaps2D` (#8512)
- Added missed Chinese tutorial link (#8564)
- Fix mistakes in gaussian radius formula (#8607)
- Update config documentation about how to Add WandB Hook (#8663)
- Add mmengine link in readme (#8799)
- Update issue template (#8802)

#### Contributors

A total of 16 developers contributed to this release.
Thanks @daquexian, @lyq10085, @ZwwWayne, @fbagci, @BubblyYi, @fathomson, @ShunchiZhang, @ceasona, @Happylkx, @normster, @chhluo, @Lehsuby, @JiayuXu0, @Nourollah, @hewanru-bit, @RangiLyu

### v2.25.1 (29/7/2022)

#### Bug Fixes
Expand Down
3 changes: 2 additions & 1 deletion docs/en/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ We list some common troubles faced by many users and their corresponding solutio

| MMDetection version | MMCV version |
| :-----------------: | :------------------------: |
| master | mmcv-full>=1.3.17, \<1.6.0 |
| master | 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 |
| 2.25.0 | mmcv-full>=1.3.17, \<1.6.0 |
| 2.24.1 | mmcv-full>=1.3.17, \<1.6.0 |
Expand Down
3 changes: 2 additions & 1 deletion docs/zh_cn/get_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ MMDetection 和 MMCV 版本兼容性如下所示,需要安装正确的 MMCV

| MMDetection 版本 | MMCV 版本 |
| :--------------: | :------------------------: |
| master | mmcv-full>=1.3.17, \<1.6.0 |
| master | 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 |
| 2.25.0 | mmcv-full>=1.3.17, \<1.6.0 |
| 2.24.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.1'
__version__ = '2.25.2'
short_version = __version__


Expand Down

0 comments on commit 9d3e162

Please sign in to comment.