Skip to content

Commit

Permalink
Bump version to v2.24.1 (#7884)
Browse files Browse the repository at this point in the history
* bump version to v2.24.1

* update dockerfile version
  • Loading branch information
ZwwWayne committed Apr 30, 2022
1 parent 178b9fd commit 73b4e65
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ This project is released under the [Apache 2.0 license](LICENSE).

## Changelog

**2.24.0** was released in 26/4/2022:
**2.24.1** was released in 30/4/2022:

- Support [Simple Copy Paste](configs/simple_copy_paste)
- Support automatically scaling LR according to GPU number and samples per GPU
Expand Down
2 changes: 1 addition & 1 deletion README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope

## 更新日志

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

- 支持算法 [Simple Copy Paste](configs/simple_copy_paste)
- 支持训练时根据总 batch 数自动缩放学习率
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.24.0"
ARG MMDET="2.24.1"

ENV PYTHONUNBUFFERED TRUE

Expand Down
4 changes: 2 additions & 2 deletions docs/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
<table align="center">
<thead>
<tr align='center'>
<td>Before v2.24.0</td>
<td>Since v2.24.0 </td>
<td>v2.23.0</td>
<td>v2.24.0</td>
</tr>
</thead>
<tbody><tr valign='top'>
Expand Down
1 change: 1 addition & 0 deletions docs/en/get_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Compatible MMDetection and MMCV versions are shown as below. Please install the
| MMDetection version | MMCV version |
|:-------------------:|:-------------------------:|
| master | mmcv-full>=1.3.17, <1.6.0 |
| 2.24.1 | mmcv-full>=1.3.17, <1.6.0 |
| 2.24.0 | mmcv-full>=1.3.17, <1.6.0 |
| 2.23.0 | mmcv-full>=1.3.17, <1.5.0 |
| 2.22.0 | mmcv-full>=1.3.17, <1.5.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 @@ -12,7 +12,8 @@ MMDetection 和 MMCV 版本兼容性如下所示,需要安装正确的 MMCV
| MMDetection 版本 | MMCV 版本 |
|:--------------:|:-------------------------:|
| master | mmcv-full>=1.3.17, <1.6.0 |
| 2.24.0 | mmcv-full>=1.3.17, <1.6.0 |
| 2.24.1 | mmcv-full>=1.3.17, <1.6.0 |
| 2.24.0 | mmcv-full>=1.3.17, <1.6.0 |
| 2.23.0 | mmcv-full>=1.3.17, <1.5.0 |
| 2.22.0 | mmcv-full>=1.3.17, <1.5.0 |
| 2.21.0 | mmcv-full>=1.3.17, <1.5.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.24.0'
__version__ = '2.24.1'
short_version = __version__


Expand Down
2 changes: 1 addition & 1 deletion tools/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def main():
'"auto_scale_lr.enable" or '
'"auto_scale_lr.base_batch_size" in your'
' configuration file. Please update all the '
'configuration files to mmdet >= 2.24.0.')
'configuration files to mmdet >= 2.24.1.')

# set multi-process settings
setup_multi_processes(cfg)
Expand Down

0 comments on commit 73b4e65

Please sign in to comment.