From 1398e4200e19386894829a4418c03a491b434a9f Mon Sep 17 00:00:00 2001 From: fanqiNO1 <75657629+fanqiNO1@users.noreply.github.com> Date: Tue, 26 Dec 2023 16:30:01 +0800 Subject: [PATCH] bump version to v0.10.2 (#1460) --- README.md | 4 ++-- README_zh-CN.md | 4 ++-- docs/en/notes/changelog.md | 16 ++++++++++++++++ mmengine/version.py | 2 +- 4 files changed, 21 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7aa77a5462..ff51643e12 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ English | [简体中文](README_zh-CN.md) ## What's New -v0.10.1 was released on 2023-11-22. +v0.10.2 was released on 2023-12-26. Highlights: @@ -70,7 +70,7 @@ Highlights: - 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. -Read [Changelog](./docs/en/notes/changelog.md#v0101-22112023) for more details. +Read [Changelog](./docs/en/notes/changelog.md#v0102-26122023) for more details. ## Table of Contents diff --git a/README_zh-CN.md b/README_zh-CN.md index 62f32c31b6..0fd5d272fd 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -58,7 +58,7 @@ ## 最近进展 -最新版本 v0.10.1 在 2023.11.22 发布。 +最新版本 v0.10.2 在 2023.12.26 发布。 亮点: @@ -70,7 +70,7 @@ - 支持多种可视化后端,包括`NeptuneVisBackend`、`DVCLiveVisBackend` 和 `AimVisBackend`。可阅读[可视化后端](https://mmengine.readthedocs.io/zh_CN/latest/common_usage/visualize_training_log.html)了解用法。 -如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v0101-22112023) +如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v0102-26122023) ## 目录 diff --git a/docs/en/notes/changelog.md b/docs/en/notes/changelog.md index b1aa854eb0..7433be503a 100644 --- a/docs/en/notes/changelog.md +++ b/docs/en/notes/changelog.md @@ -1,5 +1,21 @@ # Changelog of v0.x +## v0.10.2 (26/12/2023) + +### New Features & Enhancements + +- Support multi-node distributed training with NPU backend by [@shun001](https://github.com/shun001) in https://github.com/open-mmlab/mmengine/pull/1459 +- Use `ImportError` to cover `ModuleNotFoundError` by [@del-zhenwu](https://github.com/del-zhenwu) in https://github.com/open-mmlab/mmengine/pull/1438 + +### Bug Fixes + +- Fix bug in `load_model_state_dict` of `BaseStrategy` by [@SCZwangxiao](https://github.com/SCZwangxiao) in https://github.com/open-mmlab/mmengine/pull/1447 +- Fix placement policy in ColossalAIStrategy by [@fanqiNO1](https://github.com/fanqiNO1) in https://github.com/open-mmlab/mmengine/pull/1440 + +### Contributors + +A total of 4 developers contributed to this release. Thanks [@shun001](https://github.com/shun001), [@del-zhenwu](https://github.com/del-zhenwu), [@SCZwangxiao](https://github.com/SCZwangxiao), [@fanqiNO1](https://github.com/fanqiNO1) + ## v0.10.1 (22/11/2023) ### Bug Fixes diff --git a/mmengine/version.py b/mmengine/version.py index eb41800589..d36dfb8380 100644 --- a/mmengine/version.py +++ b/mmengine/version.py @@ -1,6 +1,6 @@ # Copyright (c) OpenMMLab. All rights reserved. -__version__ = '0.10.1' +__version__ = '0.10.2' def parse_version_info(version_str):