Skip to content

Commit ae0fac4

Browse files
authored
Bump version to v0.24.1 (open-mmlab#1541)
* Bump version to v0.24.1 * version.py * changelog.md
1 parent 9dae7e1 commit ae0fac4

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
6666

6767
## Changelog
6868

69-
v0.24.0 was released in 4/29/2022.
69+
v0.24.1 was released in 5/1/2022.
7070
Please refer to [changelog.md](docs/en/changelog.md) for details and release history.
7171

7272
## Benchmark and model zoo

README_zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O
6565

6666
## 更新日志
6767

68-
最新版本 v0.24.0 在 2022.4.29 发布。
68+
最新版本 v0.24.1 在 2022.5.1 发布。
6969
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/en/changelog.md)
7070

7171
## 基准测试和模型库

docker/serve/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG CUDNN="8"
44
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
55

66
ARG MMCV="1.4.8"
7-
ARG MMSEG="0.24.0"
7+
ARG MMSEG="0.24.1"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/en/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Changelog
22

3+
### V0.24.1 (5/1/2022)
4+
5+
**Bug Fixes**
6+
7+
- Fix `LayerDecayOptimizerConstructor` for MAE training ([#1539](https://github.com/open-mmlab/mmsegmentation/pull/1539), [#1540](https://github.com/open-mmlab/mmsegmentation/pull/1540))
8+
39
### V0.24.0 (4/29/2022)
410

511
**Highlights**

docs/en/get_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the
1212
| MMSegmentation version | MMCV version | MMClassification version |
1313
|:----------------------:|:--------------------------:|:------------------------:|
1414
| master | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
15-
| 0.24.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
15+
| 0.24.1 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1616
| 0.23.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1717
| 0.22.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1818
| 0.21.1 | mmcv-full>=1.4.4, <=1.6.0 | Not required |

docs/zh_cn/get_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
| MMSegmentation 版本 | MMCV 版本 | MMClassification 版本 |
1313
|:-----------------:|:--------------------------:|:------------------------:|
1414
| master | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
15-
| 0.24.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
15+
| 0.24.1 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1616
| 0.23.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1717
| 0.22.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1818
| 0.21.1 | mmcv-full>=1.4.4, <=1.6.0 | Not required |

mmseg/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) Open-MMLab. All rights reserved.
22

3-
__version__ = '0.24.0'
3+
__version__ = '0.24.1'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)