Skip to content

Commit c14dd6c

Browse files
authored
Bump version to v2.28.1 (#9708)
1 parent a47398f commit c14dd6c

File tree

7 files changed

+23
-6
lines changed

7 files changed

+23
-6
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ Apart from MMDetection, we also released a library [mmcv](https://github.com/ope
7777

7878
### 💎 Stable version
7979

80-
**2.28.0** was released in 28/1/2023:
80+
**2.28.1** was released in 1/2/2023:
8181

8282
- Support Objects365 Dataset, and Separated and Occluded COCO metric
8383
- Support acceleration of RetinaNet and SSD on Ascend
84-
- Deprecate the support of Python 3.6
84+
- Deprecate the support of Python 3.6 and fix some bugs of 2.28.0
8585

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

Diff for: README_zh-CN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
7676

7777
### 💎 稳定版本
7878

79-
最新的 **2.28.0** 版本已经在 2023.1.28 发布:
79+
最新的 **2.28.1** 版本已经在 2023.2.1 发布:
8080

8181
- 支持 Object365 数据集和遮挡物检测的 benchmark
8282
- 支持 SSD 和 RetinaNet 算法在昇腾芯片上的加速
83-
- 不再保证对 Python 3.6 的支持
83+
- 不再保证对 Python 3.6 的支持并修复了 2.28.0 的一些 bug
8484

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

Diff for: docker/serve/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG CUDNN="7"
44
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
55

66
ARG MMCV="1.3.17"
7-
ARG MMDET="2.28.0"
7+
ARG MMDET="2.28.1"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

Diff for: docs/en/changelog.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
## Changelog
22

3+
### v2.28.1 (1/2/2023)
4+
5+
#### Bug Fixes
6+
7+
- Enable to set float mlp_ratio in SwinTransformer (#8670)
8+
- Fix import error that causes training failure (#9694)
9+
- Fix isort version in lint (#9685)
10+
- Fix init_cfg of YOLOF (#8243)
11+
12+
#### Contributors
13+
14+
A total of 4 developers contributed to this release.
15+
Thanks @triple-Mu, @i-aki-y, @twmht, @RangiLyu
16+
317
### v2.28.0 (28/1/2023)
418

519
#### Highlights

Diff for: docs/en/faq.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ We list some common troubles faced by many users and their corresponding solutio
1111
| MMDetection version | MMCV version |
1212
| :-----------------: | :------------------------: |
1313
| master | mmcv-full>=1.3.17, \<1.8.0 |
14+
| 2.28.1 | mmcv-full>=1.3.17, \<1.8.0 |
1415
| 2.28.0 | mmcv-full>=1.3.17, \<1.8.0 |
1516
| 2.27.0 | mmcv-full>=1.3.17, \<1.8.0 |
1617
| 2.26.0 | mmcv-full>=1.3.17, \<1.8.0 |

Diff for: docs/zh_cn/get_started.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ MMDetection 和 MMCV 版本兼容性如下所示,需要安装正确的 MMCV
1212
| MMDetection 版本 | MMCV 版本 |
1313
| :--------------: | :------------------------: |
1414
| master | mmcv-full>=1.3.17, \<1.8.0 |
15+
| 2.28.1 | mmcv-full>=1.3.17, \<1.8.0 |
16+
| 2.28.0 | mmcv-full>=1.3.17, \<1.8.0 |
1517
| 2.27.0 | mmcv-full>=1.3.17, \<1.8.0 |
1618
| 2.26.0 | mmcv-full>=1.3.17, \<1.8.0 |
1719
| 2.25.3 | mmcv-full>=1.3.17, \<1.7.0 |

Diff for: mmdet/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) OpenMMLab. All rights reserved.
22

3-
__version__ = '2.28.0'
3+
__version__ = '2.28.1'
44
short_version = __version__
55

66

0 commit comments

Comments
 (0)