From 85f0e562c3947f5c5e27a400809df8d0bb69994a Mon Sep 17 00:00:00 2001 From: Yixiao Fang <36138628+fangyixiao18@users.noreply.github.com> Date: Thu, 1 Sep 2022 10:36:03 +0800 Subject: [PATCH] [Fix] fix version error (#468) --- README.md | 2 +- README_zh-CN.md | 2 +- docs/en/migration.md | 2 +- docs/en/notes/changelog.md | 6 +++--- mmselfsup/version.py | 2 +- requirements/runtime.txt | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b67ac4fd..1262a77c 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ The master branch works with **PyTorch 1.6** or higher. ## What's New -MMSelfSup **v1.0.0rc0** was released in 01/09/2022. +MMSelfSup **v1.0.0rc1** was released in 01/09/2022. - Based on MMEngine and MMCV. - Released with refactor. diff --git a/README_zh-CN.md b/README_zh-CN.md index eee039d3..fdf11e81 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -65,7 +65,7 @@ MMSelfSup 是一个基于 PyTorch 实现的开源自监督表征学习工具箱 ## 更新 -最新的 **v1.0.0rc0** 版本已经在 2022.09.01 发布。 +最新的 **v1.0.0rc1** 版本已经在 2022.09.01 发布。 新版本亮点: diff --git a/docs/en/migration.md b/docs/en/migration.md index dd1b5137..8b6bcf19 100644 --- a/docs/en/migration.md +++ b/docs/en/migration.md @@ -21,7 +21,7 @@ according to the [install tutorial](./get_started.md). Three important packages 2. [MMCV](https://github.com/open-mmlab/mmcv): The computer vision package of OpenMMLab. This is not a new dependency, but you need to upgrade it to above `2.0.0rc1` version. 3. [MMClassification](https://github.com/open-mmlab/mmcv): The image classification package of OpenMMLab. This is not a new - dependency, but you need to upgrade it to above `2.0.0rc0` version. + dependency, but you need to upgrade it to above `1.0.0rc0` version. ## Config diff --git a/docs/en/notes/changelog.md b/docs/en/notes/changelog.md index 61e0a545..ae28b60c 100644 --- a/docs/en/notes/changelog.md +++ b/docs/en/notes/changelog.md @@ -2,10 +2,10 @@ ## MMSelfSup -### v1.0.0rc0 (01/09/2022) +### v1.0.0rc1 (01/09/2022) -We are excited to announce the release of MMSelfSup v1.0.0rc0. -MMSelfSup v1.0.0rc0 is the first version of MMSelfSup 1.x, a part of the OpenMMLab 2.x projects. +We are excited to announce the release of MMSelfSup v1.0.0rc1. +MMSelfSup v1.0.0rc1 is the first version of MMSelfSup 1.x, a part of the OpenMMLab 2.0 projects. The `master` branch is still 0.x version and we will checkout a new `1.x` branch to release 1.x version. The two versions will be maintained simultaneously in the future. We briefly list the major breaking changes here. Please refer to the [migration guide](../migration.md) for details and migration instructions. diff --git a/mmselfsup/version.py b/mmselfsup/version.py index 18e5e9e6..04233dc6 100644 --- a/mmselfsup/version.py +++ b/mmselfsup/version.py @@ -1,6 +1,6 @@ # Copyright (c) Open-MMLab. All rights reserved. -__version__ = '1.0.0rc0' +__version__ = '1.0.0rc1' def parse_version_info(version_str): diff --git a/requirements/runtime.txt b/requirements/runtime.txt index 02d570d9..882fe8b9 100644 --- a/requirements/runtime.txt +++ b/requirements/runtime.txt @@ -1,7 +1,7 @@ attrs future matplotlib -mmcls>=2.0.0rc0 +mmcls>=1.0.0rc0 numpy packaging scikit-learn