Skip to content

Commit

Permalink
Bump version to v0.24.1 (#1541)
Browse files Browse the repository at this point in the history
* Bump version to v0.24.1

* version.py

* changelog.md
  • Loading branch information
MengzhangLI committed May 1, 2022
1 parent 9dae7e1 commit ae0fac4
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README_zh-CN.md
Expand Up @@ -65,7 +65,7 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O

## 更新日志

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

## 基准测试和模型库
Expand Down
2 changes: 1 addition & 1 deletion docker/serve/Dockerfile
Expand Up @@ -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

Expand Down
6 changes: 6 additions & 0 deletions docs/en/changelog.md
@@ -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**
Expand Down
2 changes: 1 addition & 1 deletion docs/en/get_started.md
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_cn/get_started.md
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion mmseg/version.py
@@ -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):
Expand Down

0 comments on commit ae0fac4

Please sign in to comment.