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):