Skip to content

Commit 66fb81f

Browse files
authored
Bump version to 0.10.4 (#1534)
1 parent acbc5e4 commit 66fb81f

File tree

4 files changed

+35
-11
lines changed

4 files changed

+35
-11
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ English | [简体中文](README_zh-CN.md)
5959

6060
## What's New
6161

62-
v0.10.3 was released on 2024-1-24.
62+
v0.10.4 was released on 2024-4-23.
6363

6464
Highlights:
6565

66-
- Add the support for musa device [#1453](#1453)
67-
- Add the usage of ProfilerHook [#1466](#1466)
66+
- Support custom `artifact_location` in MLflowVisBackend [#1505](#1505)
67+
- Enable `exclude_frozen_parameters` for `DeepSpeedEngine._zero3_consolidated_16bit_state_dict` [#1517](#1517)
6868

69-
Read [Changelog](./docs/en/notes/changelog.md#v0103-2412024) for more details.
69+
Read [Changelog](./docs/en/notes/changelog.md#v0104-2342024) for more details.
7070

7171
## Introduction
7272

@@ -102,7 +102,7 @@ MMEngine is a foundational library for training deep learning models based on Py
102102
| MMEngine | PyTorch | Python |
103103
| ------------------ | ------------ | -------------- |
104104
| main | >=1.6 \<=2.1 | >=3.8, \<=3.11 |
105-
| >=0.9.0, \<=0.10.3 | >=1.6 \<=2.1 | >=3.8, \<=3.11 |
105+
| >=0.9.0, \<=0.10.4 | >=1.6 \<=2.1 | >=3.8, \<=3.11 |
106106

107107
</details>
108108

README_zh-CN.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@
5959

6060
## 最近进展
6161

62-
最新版本 v0.10.3 在 2024.1.24 发布。
62+
最新版本 v0.10.4 在 2024.4.23 发布。
6363

6464
版本亮点:
6565

66-
- 适配摩尔线程 [#1453](#1453)
67-
- 添加 ProfilerHook 使用文档 [#1466](#1466)
66+
- 支持在 MLFlowVisBackend 中自定义 `artifact_location` [#1505](#1505)
67+
- 支持在 `DeepSpeedEngine._zero3_consolidated_16bit_state_dict` 使用 `exclude_frozen_parameters` [#1517](#1517)
6868

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

7171
## 简介
7272

@@ -107,7 +107,7 @@ MMEngine 是一个基于 PyTorch 实现的,用于训练深度学习模型的
107107
| MMEngine | PyTorch | Python |
108108
| ------------------ | ------------ | -------------- |
109109
| main | >=1.6 \<=2.1 | >=3.8, \<=3.11 |
110-
| >=0.9.0, \<=0.10.3 | >=1.6 \<=2.1 | >=3.8, \<=3.11 |
110+
| >=0.9.0, \<=0.10.4 | >=1.6 \<=2.1 | >=3.8, \<=3.11 |
111111

112112
</details>
113113

docs/en/notes/changelog.md

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

3+
## v0.10.4 (23/4/2024)
4+
5+
### New Features & Enhancements
6+
7+
- Support custom `artifact_location` in MLflowVisBackend. by [@daavoo](https://github.com/daavoo) in https://github.com/open-mmlab/mmengine/pull/1505
8+
- Add the supported pytorch versions in README by [@zhouzaida](https://github.com/zhouzaida) in https://github.com/open-mmlab/mmengine/pull/1512
9+
- Perform evaluation upon training completion by [@LZHgrla](https://github.com/LZHgrla) in https://github.com/open-mmlab/mmengine/pull/1529
10+
- Enable `exclude_frozen_parameters` for `DeepSpeedEngine._zero3_consolidated_16bit_state_dict` by [@LZHgrla](https://github.com/LZHgrla) in https://github.com/open-mmlab/mmengine/pull/1517
11+
12+
### Bug Fixes
13+
14+
- Fix warning capture by [@fanqiNO1](https://github.com/fanqiNO1) in https://github.com/open-mmlab/mmengine/pull/1494
15+
- Remove codeowners file by [@zhouzaida](https://github.com/zhouzaida) in https://github.com/open-mmlab/mmengine/pull/1496
16+
- Fix config of readthedocs by [@zhouzaida](https://github.com/zhouzaida) in https://github.com/open-mmlab/mmengine/pull/1511
17+
- Delete frozen parameters when using `paramwise_cfg` by [@LZHgrla](https://github.com/LZHgrla) in https://github.com/open-mmlab/mmengine/pull/1441
18+
19+
### Docs
20+
21+
- Refine mmengine intro by [@zhouzaida](https://github.com/zhouzaida) in https://github.com/open-mmlab/mmengine/pull/1479
22+
- Fix typo by [@zhouzaida](https://github.com/zhouzaida) in https://github.com/open-mmlab/mmengine/pull/1481
23+
- Fix typos and remove fullwidth unicode chars by [@evdcush](https://github.com/evdcush) in https://github.com/open-mmlab/mmengine/pull/1488
24+
- Fix docstring of Config by [@MambaWong](https://github.com/MambaWong) in https://github.com/open-mmlab/mmengine/pull/1506
25+
- Fix typo by [@hiramf](https://github.com/hiramf) in https://github.com/open-mmlab/mmengine/pull/1532
26+
327
## v0.10.3 (24/1/2024)
428

529
### 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.3'
3+
__version__ = '0.10.4'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)