Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to v2.28.1 #9708

Merged
merged 2 commits into from
Feb 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ Apart from MMDetection, we also released a library [mmcv](https://github.com/ope

### 💎 Stable version

**2.28.0** was released in 28/1/2023:
**2.28.1** was released in 1/2/2023:

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

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

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

### 💎 稳定版本

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

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

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

ENV PYTHONUNBUFFERED TRUE

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

### v2.28.1 (1/2/2023)

#### Bug Fixes

- Enable to set float mlp_ratio in SwinTransformer (#8670)
- Fix import error that causes training failure (#9694)
- Fix isort version in lint (#9685)
- Fix init_cfg of YOLOF (#8243)

#### Contributors

A total of 4 developers contributed to this release.
Thanks @triple-Mu, @i-aki-y, @twmht, @RangiLyu

### v2.28.0 (28/1/2023)

#### Highlights
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.28.1 | mmcv-full>=1.3.17, \<1.8.0 |
| 2.28.0 | mmcv-full>=1.3.17, \<1.8.0 |
| 2.27.0 | mmcv-full>=1.3.17, \<1.8.0 |
| 2.26.0 | mmcv-full>=1.3.17, \<1.8.0 |
Expand Down
2 changes: 2 additions & 0 deletions docs/zh_cn/get_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ MMDetection 和 MMCV 版本兼容性如下所示,需要安装正确的 MMCV
| MMDetection 版本 | MMCV 版本 |
| :--------------: | :------------------------: |
| master | mmcv-full>=1.3.17, \<1.8.0 |
| 2.28.1 | mmcv-full>=1.3.17, \<1.8.0 |
| 2.28.0 | mmcv-full>=1.3.17, \<1.8.0 |
| 2.27.0 | 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 |
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.28.0'
__version__ = '2.28.1'
short_version = __version__


Expand Down