From 17624d250e30b6159e2a699ee3b4ad7943627fc1 Mon Sep 17 00:00:00 2001 From: Mashiro <57566630+HAOCHENYE@users.noreply.github.com> Date: Thu, 24 Nov 2022 23:38:26 +0800 Subject: [PATCH] Bump version to v0.3.2 (#763) * Bump version to v0.3.2 * minor refine * Apply suggestions from code review Co-authored-by: Zaida Zhou <58739961+zhouzaida@users.noreply.github.com> * remove highlights Co-authored-by: Zaida Zhou <58739961+zhouzaida@users.noreply.github.com> --- README.md | 6 ++---- README_zh-CN.md | 6 ++---- docs/en/notes/changelog.md | 26 ++++++++++++++++++++++++++ mmengine/version.py | 2 +- 4 files changed, 31 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index a66eb76c..48bcfdc8 100644 --- a/README.md +++ b/README.md @@ -58,11 +58,9 @@ Major features: ## What's New -v0.3.1 was released in 2022-11-09. +v0.3.2 was released in 2022-11-24. -**Fix error when saving best checkpoint in ddp-training**. - -Read [Changelog](./docs/en/notes/changelog.md#v0.3.1 "09/11/2022") for more details. +Read [Changelog](./docs/en/notes/changelog.md#v032-11242022) for more details. ## Installation diff --git a/README_zh-CN.md b/README_zh-CN.md index 7e215bb5..b026c1d4 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -60,11 +60,9 @@ MMEngine 是一个基于 PyTorch 用于深度学习模型训练的基础库, ## 最近进展 -最新版本 v0.3.1 在 2022.11.09 发布。 +最新版本 v0.3.2 在 2022.11.24 发布。 -**修复分布式训练时,保存最佳 checkpoint 报错问题**。 - -如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v0.3.1 "09/11/2022") +如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v032-11242022) ## 安装 diff --git a/docs/en/notes/changelog.md b/docs/en/notes/changelog.md index 089ebd3e..0d216170 100644 --- a/docs/en/notes/changelog.md +++ b/docs/en/notes/changelog.md @@ -1,5 +1,31 @@ # Changelog of v0.x +## v0.3.2 (11/24/2022) + +### New Features & Enhancements + +- Send git errors to subprocess.PIPE by @austinmw in https://github.com/open-mmlab/mmengine/pull/717 +- Add a common `TestRunnerTestCase` to build a Runner instance. by @HAOCHENYE in https://github.com/open-mmlab/mmengine/pull/631 +- Align the log by @HAOCHENYE in https://github.com/open-mmlab/mmengine/pull/436 +- Log the called order of hooks during training process by @songyuc in https://github.com/open-mmlab/mmengine/pull/672 +- Support setting `eta_min_ratio` in `CosineAnnealingParamScheduler` by @cir7 in https://github.com/open-mmlab/mmengine/pull/725 +- Enhance compatibility of `revert_sync_batchnorm` by @HAOCHENYE in https://github.com/open-mmlab/mmengine/pull/695 + +### Bug Fixes + +- Fix `distributed_training.py` in examples by @PingHGao in https://github.com/open-mmlab/mmengine/pull/700 +- Format the log of `CheckpointLoader.load_checkpoint` by @HAOCHENYE in https://github.com/open-mmlab/mmengine/pull/685 +- Fix bug of CosineAnnealingParamScheduler by @fangyixiao18 in https://github.com/open-mmlab/mmengine/pull/735 +- Fix `add_graph` is not called bug by @shenmishajing in https://github.com/open-mmlab/mmengine/pull/632 +- Fix .pre-commit-config-zh-cn.yaml pyupgrade-repo github->gitee by @BayMaxBHL in https://github.com/open-mmlab/mmengine/pull/756 + +### Docs + +- Add English docs of BaseDataset by @GT9505 in https://github.com/open-mmlab/mmengine/pull/713 +- Fix `BaseDataset` typo about lazy initialization by @MengzhangLI in https://github.com/open-mmlab/mmengine/pull/733 +- Fix typo by @zhouzaida in https://github.com/open-mmlab/mmengine/pull/734 +- Translate visualization docs by @xin-li-67 in https://github.com/open-mmlab/mmengine/pull/692 + ## v0.3.1 (11/09/2022) ### Highlights diff --git a/mmengine/version.py b/mmengine/version.py index 5ca9bf53..ac88ca0a 100644 --- a/mmengine/version.py +++ b/mmengine/version.py @@ -1,6 +1,6 @@ # Copyright (c) OpenMMLab. All rights reserved. -__version__ = '0.3.1' +__version__ = '0.3.2' def parse_version_info(version_str):