From b2295a258c4af3cdeb1a55fa5e49cddbd1c6c0bf Mon Sep 17 00:00:00 2001 From: Mashiro <57566630+HAOCHENYE@users.noreply.github.com> Date: Wed, 5 Jul 2023 23:27:51 +0800 Subject: [PATCH] bump version to v0.8.1 (#1237) --- docs/en/notes/changelog.md | 14 ++++++++++++++ mmengine/version.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/en/notes/changelog.md b/docs/en/notes/changelog.md index ee413cf1..b742458c 100644 --- a/docs/en/notes/changelog.md +++ b/docs/en/notes/changelog.md @@ -1,5 +1,19 @@ # Changelog of v0.x +## v0.8.1 (07/05/2023) + +### New Features & Enhancements + +- Accelerate `Config.dump` and support converting Lazyxxx to string in `ConfigDict.to_dict`by [@HAOCHENYE](https://github.com/HAOCHENYE) in https://github.com/open-mmlab/mmengine/pull/1232 + +### Bug fixes + +- FSDP should call `_get_ignored_modules` by [@HAOCHENYE](https://github.com/HAOCHENYE) in https://github.com/open-mmlab/mmengine/pull/1235 + +### Docs + +- Add a document to introduce how to train a large model by [@zhouzaida](https://github.com/zhouzaida) in https://github.com/open-mmlab/mmengine/pull/1228 + ## v0.8.0 (06/30/2023) ### Highlights diff --git a/mmengine/version.py b/mmengine/version.py index 7eabc200..2233567d 100644 --- a/mmengine/version.py +++ b/mmengine/version.py @@ -1,6 +1,6 @@ # Copyright (c) OpenMMLab. All rights reserved. -__version__ = '0.8.0' +__version__ = '0.8.1' def parse_version_info(version_str):