Bump version to v0.24.1 (#1541)

* Bump version to v0.24.1

* version.py

* changelog.md
This commit is contained in:
MengzhangLI 2022-05-01 14:06:04 +08:00 committed by GitHub
parent 28b42597a1
commit 7f1a72ac42
7 changed files with 12 additions and 6 deletions

View File

@ -66,7 +66,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
## Changelog
v0.24.0 was released in 4/29/2022.
v0.24.1 was released in 5/1/2022.
Please refer to [changelog.md](docs/en/changelog.md) for details and release history.
## Benchmark and model zoo

View File

@ -65,7 +65,7 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O
## 更新日志
最新版本 v0.24.0 在 2022.4.29 发布。
最新版本 v0.24.1 在 2022.5.1 发布。
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/en/changelog.md)。
## 基准测试和模型库

View File

@ -4,7 +4,7 @@ ARG CUDNN="8"
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
ARG MMCV="1.4.8"
ARG MMSEG="0.24.0"
ARG MMSEG="0.24.1"
ENV PYTHONUNBUFFERED TRUE

View File

@ -1,5 +1,11 @@
## Changelog
### V0.24.1 (5/1/2022)
**Bug Fixes**
- Fix `LayerDecayOptimizerConstructor` for MAE training ([#1539](https://github.com/open-mmlab/mmsegmentation/pull/1539), [#1540](https://github.com/open-mmlab/mmsegmentation/pull/1540))
### V0.24.0 (4/29/2022)
**Highlights**

View File

@ -12,7 +12,7 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the
| MMSegmentation version | MMCV version | MMClassification version |
|:----------------------:|:--------------------------:|:------------------------:|
| master | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
| 0.24.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
| 0.24.1 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
| 0.23.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
| 0.22.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
| 0.21.1 | mmcv-full>=1.4.4, <=1.6.0 | Not required |

View File

@ -12,7 +12,7 @@
| MMSegmentation 版本 | MMCV 版本 | MMClassification 版本 |
|:-----------------:|:--------------------------:|:------------------------:|
| master | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
| 0.24.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
| 0.24.1 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
| 0.23.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
| 0.22.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
| 0.21.1 | mmcv-full>=1.4.4, <=1.6.0 | Not required |

View File

@ -1,6 +1,6 @@
# Copyright (c) Open-MMLab. All rights reserved.
__version__ = '0.24.0'
__version__ = '0.24.1'
def parse_version_info(version_str):