Skip to content

Commit 73b4e65

Browse files
authored
Bump version to v2.24.1 (#7884)
* bump version to v2.24.1 * update dockerfile version
1 parent 178b9fd commit 73b4e65

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
7474

7575
## Changelog
7676

77-
**2.24.0** was released in 26/4/2022:
77+
**2.24.1** was released in 30/4/2022:
7878

7979
- Support [Simple Copy Paste](configs/simple_copy_paste)
8080
- Support automatically scaling LR according to GPU number and samples per GPU

README_zh-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
7373

7474
## 更新日志
7575

76-
最新的 **2.24.0** 版本已经在 2022.03.28 发布:
76+
最新的 **2.24.1** 版本已经在 2022.04.30 发布:
7777

7878
- 支持算法 [Simple Copy Paste](configs/simple_copy_paste)
7979
- 支持训练时根据总 batch 数自动缩放学习率

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.24.0"
7+
ARG MMDET="2.24.1"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/en/changelog.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
<table align="center">
3636
<thead>
3737
<tr align='center'>
38-
<td>Before v2.24.0</td>
39-
<td>Since v2.24.0 </td>
38+
<td>v2.23.0</td>
39+
<td>v2.24.0</td>
4040
</tr>
4141
</thead>
4242
<tbody><tr valign='top'>

docs/en/get_started.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Compatible MMDetection and MMCV versions are shown as below. Please install the
1212
| MMDetection version | MMCV version |
1313
|:-------------------:|:-------------------------:|
1414
| master | mmcv-full>=1.3.17, <1.6.0 |
15+
| 2.24.1 | mmcv-full>=1.3.17, <1.6.0 |
1516
| 2.24.0 | mmcv-full>=1.3.17, <1.6.0 |
1617
| 2.23.0 | mmcv-full>=1.3.17, <1.5.0 |
1718
| 2.22.0 | mmcv-full>=1.3.17, <1.5.0 |

docs/zh_cn/get_started.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ MMDetection 和 MMCV 版本兼容性如下所示,需要安装正确的 MMCV
1212
| MMDetection 版本 | MMCV 版本 |
1313
|:--------------:|:-------------------------:|
1414
| master | mmcv-full>=1.3.17, <1.6.0 |
15-
| 2.24.0 | mmcv-full>=1.3.17, <1.6.0 |
15+
| 2.24.1 | mmcv-full>=1.3.17, <1.6.0 |
16+
| 2.24.0 | mmcv-full>=1.3.17, <1.6.0 |
1617
| 2.23.0 | mmcv-full>=1.3.17, <1.5.0 |
1718
| 2.22.0 | mmcv-full>=1.3.17, <1.5.0 |
1819
| 2.21.0 | mmcv-full>=1.3.17, <1.5.0 |

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.24.0'
3+
__version__ = '2.24.1'
44
short_version = __version__
55

66

tools/train.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def main():
125125
'"auto_scale_lr.enable" or '
126126
'"auto_scale_lr.base_batch_size" in your'
127127
' configuration file. Please update all the '
128-
'configuration files to mmdet >= 2.24.0.')
128+
'configuration files to mmdet >= 2.24.1.')
129129

130130
# set multi-process settings
131131
setup_multi_processes(cfg)

0 commit comments

Comments
 (0)