Skip to content

Commit 4678418

Browse files
authored
bump version to v0.9.1 (#1421)
1 parent eb4fa73 commit 4678418

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-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.9.0 was released on 2023-10-10.
61+
v0.9.1 was released on 2023-11-03.
6262

6363
Highlights:
6464

@@ -68,7 +68,7 @@ Highlights:
6868

6969
- 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.
7070

71-
Read [Changelog](./docs/en/notes/changelog.md#v090-10102023) for more details.
71+
Read [Changelog](./docs/en/notes/changelog.md#v091-03112023) for more details.
7272

7373
## Table of Contents
7474

README_zh-CN.md

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

5959
## 最近进展
6060

61-
最新版本 v0.9.0 在 2023.10.10 发布。
61+
最新版本 v0.9.1 在 2023.11.03 发布。
6262

6363
亮点:
6464

@@ -68,7 +68,7 @@
6868

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

71-
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v090-10102023)
71+
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v091-03112023)
7272

7373
## 目录
7474

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.9.1 (03/11/2023)
4+
5+
### New Features & Enhancements
6+
7+
- Support slurm distributed training for mlu devices by [@POI-WX](https://github.com/POI-WX) in https://github.com/open-mmlab/mmengine/pull/1396
8+
- Add torch 2.1.0 checking in CI by [@YiyaoYang1](https://github.com/YiyaoYang1) in https://github.com/open-mmlab/mmengine/pull/1389
9+
- Add `exclude_frozen_parameters` for `DeepSpeedStrategy` by [@LZHgrla](https://github.com/LZHgrla) in https://github.com/open-mmlab/mmengine/pull/1415
10+
- Enhance inputs_to_half in DeepSpeedStrategy by [@fanqiNO1](https://github.com/fanqiNO1) in https://github.com/open-mmlab/mmengine/pull/1400
11+
12+
### Bug Fixes
13+
14+
- Fix new config in visualizer by [@HAOCHENYE](https://github.com/HAOCHENYE) in https://github.com/open-mmlab/mmengine/pull/1390
15+
- Fix func params using without init in OneCycleLR (#1401) by [@whlook](https://github.com/whlook) in https://github.com/open-mmlab/mmengine/pull/1403
16+
- Fix a bug when module is missing in low version of bitsandbytes by [@Ben-Louis](https://github.com/Ben-Louis) in https://github.com/open-mmlab/mmengine/pull/1388
17+
- Fix ConcatDataset raising error when metainfo is np.array by [@jonbakerfish](https://github.com/jonbakerfish) in https://github.com/open-mmlab/mmengine/pull/1407
18+
19+
### Docs
20+
21+
- Rename master to main by [@zhouzaida](https://github.com/zhouzaida) in https://github.com/open-mmlab/mmengine/pull/1397
22+
23+
### Contributors
24+
25+
A total of 9 developers contributed to this release. Thanks [@POI-WX](https://github.com/POI-WX), [@whlook](https://github.com/whlook), [@jonbakerfish](https://github.com/jonbakerfish), [@LZHgrla](https://github.com/LZHgrla), [@Ben-Louis](https://github.com/Ben-Louis), [@YiyaoYang1](https://github.com/YiyaoYang1), [@fanqiNO1](https://github.com/fanqiNO1), [@HAOCHENYE](https://github.com/HAOCHENYE), [@zhouzaida](https://github.com/zhouzaida)
26+
327
## v0.9.0 (10/10/2023)
428

529
### Highlights

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.9.0'
3+
__version__ = '0.9.1'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)