From c14dd6c42efb63f662a63fe403198bac82f47aa6 Mon Sep 17 00:00:00 2001 From: RangiLyu Date: Wed, 1 Feb 2023 19:29:57 +0800 Subject: [PATCH] Bump version to v2.28.1 (#9708) --- README.md | 4 ++-- README_zh-CN.md | 4 ++-- docker/serve/Dockerfile | 2 +- docs/en/changelog.md | 14 ++++++++++++++ docs/en/faq.md | 1 + docs/zh_cn/get_started.md | 2 ++ mmdet/version.py | 2 +- 7 files changed, 23 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9cd1eaf5821..e0cd4a15864 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/README_zh-CN.md b/README_zh-CN.md index 45e81b2876f..a7e0c844b15 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -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)。 diff --git a/docker/serve/Dockerfile b/docker/serve/Dockerfile index e9f0d84d278..374d8416e1e 100644 --- a/docker/serve/Dockerfile +++ b/docker/serve/Dockerfile @@ -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 diff --git a/docs/en/changelog.md b/docs/en/changelog.md index bf355c723f4..e08fca3eb49 100644 --- a/docs/en/changelog.md +++ b/docs/en/changelog.md @@ -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 diff --git a/docs/en/faq.md b/docs/en/faq.md index ccf86c36f09..b36d2c1a65f 100644 --- a/docs/en/faq.md +++ b/docs/en/faq.md @@ -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 | diff --git a/docs/zh_cn/get_started.md b/docs/zh_cn/get_started.md index 259f8fa8d69..d4e49409cb3 100644 --- a/docs/zh_cn/get_started.md +++ b/docs/zh_cn/get_started.md @@ -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 | diff --git a/mmdet/version.py b/mmdet/version.py index 889ab6ea7a2..31cdc95e9c3 100644 --- a/mmdet/version.py +++ b/mmdet/version.py @@ -1,6 +1,6 @@ # Copyright (c) OpenMMLab. All rights reserved. -__version__ = '2.28.0' +__version__ = '2.28.1' short_version = __version__