Skip to content

Commit 02f80e8

Browse files
authored
Bump version to 0.10.3 (#1478)
1 parent cd298e3 commit 02f80e8

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ English | [简体中文](README_zh-CN.md)
5858

5959
## What's New
6060

61-
v0.10.2 was released on 2023-12-26.
61+
v0.10.3 was released on 2024-1-24.
6262

6363
Highlights:
6464

@@ -70,7 +70,7 @@ Highlights:
7070

7171
- Supports multiple visualization backends, including `NeptuneVisBackend`, `DVCLiveVisBackend` and `AimVisBackend`. Refer to [Visualization Backends](https://mmengine.readthedocs.io/en/latest/common_usage/visualize_training_log.html) for more details.
7272

73-
Read [Changelog](./docs/en/notes/changelog.md#v0102-26122023) for more details.
73+
Read [Changelog](./docs/en/notes/changelog.md#v0103-2412024) for more details.
7474

7575
## Table of Contents
7676

README_zh-CN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
## 最近进展
6060

61-
最新版本 v0.10.22023.12.26 发布。
61+
最新版本 v0.10.32024.1.24 发布。
6262

6363
亮点:
6464

@@ -70,7 +70,7 @@
7070

7171
- 支持多种可视化后端,包括`NeptuneVisBackend``DVCLiveVisBackend``AimVisBackend`。可阅读[可视化后端](https://mmengine.readthedocs.io/zh_CN/latest/common_usage/visualize_training_log.html)了解用法。
7272

73-
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v0102-26122023)
73+
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v0103-2412024)
7474

7575
## 目录
7676

docs/en/notes/changelog.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog of v0.x
22

3+
## v0.10.3 (24/1/2024)
4+
5+
### New Features & Enhancements
6+
7+
- Add the support for musa device support by [@hanhaowen-mt](https://github.com/hanhaowen-mt) in https://github.com/open-mmlab/mmengine/pull/1453
8+
- Support `save_optimizer=False` for DeepSpeed by [@LZHgrla](https://github.com/LZHgrla) in https://github.com/open-mmlab/mmengine/pull/1474
9+
- Update visualizer.py by [@Anm-pinellia](https://github.com/Anm-pinellia) in https://github.com/open-mmlab/mmengine/pull/1476
10+
11+
### Bug Fixes
12+
13+
- Fix `Config.to_dict` by [@HAOCHENYE](https://github.com/HAOCHENYE) in https://github.com/open-mmlab/mmengine/pull/1465
14+
- Fix the resume of iteration by [@LZHgrla](https://github.com/LZHgrla) in https://github.com/open-mmlab/mmengine/pull/1471
15+
- Fix `dist.collect_results` to keep all ranks' elements by [@LZHgrla](https://github.com/LZHgrla) in https://github.com/open-mmlab/mmengine/pull/1469
16+
17+
### Docs
18+
19+
- Add the usage of ProfilerHook by [@zhouzaida](https://github.com/zhouzaida) in https://github.com/open-mmlab/mmengine/pull/1466
20+
- Fix the nnodes in the doc of ddp training by [@XiwuChen](https://github.com/XiwuChen) in https://github.com/open-mmlab/mmengine/pull/1462
21+
322
## v0.10.2 (26/12/2023)
423

524
### New Features & Enhancements

mmengine/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__ = '0.10.2'
3+
__version__ = '0.10.3'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)