Skip to content

Commit

Permalink
Bump version to 0.7.1 (#236)
Browse files Browse the repository at this point in the history
* [Fix] fix mmcls version bug

* Update version

* [Docs] fix typo

* Update MMCls version dependency

* update version dependency
  • Loading branch information
fangyixiao18 committed Mar 10, 2022
1 parent 47f6feb commit 16d9bf2
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 13 deletions.
4 changes: 4 additions & 0 deletions docs/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## MMSelfSup

### v0.7.1 (03/03/2022)

* Fix MMClassification version dependency ([#236](https://github.com/open-mmlab/mmselfsup/pull/236))

### v0.7.0 (03/03/2022)

#### Highlight
Expand Down
10 changes: 5 additions & 5 deletions docs/en/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

Compatible MMCV, MMClassification, MMDetection and MMSegmentation versions are shown below. Please install the correct version of them to avoid installation issues.

| MMSelfSup version | MMCV version | MMClassification version | MMSegmentation version | MMDetection version |
| :---------------: | :-----------------: | :----------------------: | :--------------------: | :-----------------: |
| 0.7.0 (master) | mmcv-full >= 1.3.16 | mmcls >= 0.19.0 | mmseg >= 0.20.2 | mmdet >= 2.16.0 |
| 0.6.0 | mmcv-full >= 1.3.16 | mmcls >= 0.19.0 | mmseg >= 0.20.2 | mmdet >= 2.16.0 |
| 0.5.0 | mmcv-full >= 1.3.16 | / | mmseg >= 0.20.2 | mmdet >= 2.16.0 |
| MMSelfSup version | MMCV version | MMClassification version | MMSegmentation version | MMDetection version |
| :---------------: | :-----------------: | :------------------------: | :--------------------: | :-----------------: |
| 0.7.1 (master) | mmcv-full >= 1.3.16 | mmcls >= 0.19.0, <= 0.20.1 | mmseg >= 0.20.2 | mmdet >= 2.16.0 |
| 0.6.0 | mmcv-full >= 1.3.16 | mmcls >= 0.19.0, <= 0.20.1 | mmseg >= 0.20.2 | mmdet >= 2.16.0 |
| 0.5.0 | mmcv-full >= 1.3.16 | / | mmseg >= 0.20.2 | mmdet >= 2.16.0 |

**Note:**

Expand Down
4 changes: 4 additions & 0 deletions docs/zh_cn/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## MMSelfSup

### v0.7.1 (03/03/2022)

* 修复 MMClassification 版本依赖问题 ([#236](https://github.com/open-mmlab/mmselfsup/pull/236))

### v0.7.0 (03/03/2022)

#### 亮点
Expand Down
10 changes: 5 additions & 5 deletions docs/zh_cn/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

下表显示了与 MMSelfSup 适配的 MMCV, MMClassification, MMDetection 和 MMSegmentation 的版本号。 为避免安装过程中出现问题,请参照下表安装适配的版本。

| MMSelfSup version | MMCV version | MMClassification version | MMSegmentation version | MMDetection version |
| :---------------: | :-----------------: | :----------------------: | :--------------------: | :-----------------: |
| 0.7.0 (master) | mmcv-full >= 1.3.16 | mmcls >= 0.19.0 | mmseg >= 0.20.2 | mmdet >= 2.16.0 |
| 0.6.0 | mmcv-full >= 1.3.16 | mmcls >= 0.19.0 | mmseg >= 0.20.2 | mmdet >= 2.16.0 |
| 0.5.0 | mmcv-full >= 1.3.16 | / | mmseg >= 0.20.2 | mmdet >= 2.16.0 |
| MMSelfSup version | MMCV version | MMClassification version | MMSegmentation version | MMDetection version |
| :---------------: | :-----------------: | :------------------------: | :--------------------: | :-----------------: |
| 0.7.1 (master) | mmcv-full >= 1.3.16 | mmcls >= 0.19.0, <= 0.20.1 | mmseg >= 0.20.2 | mmdet >= 2.16.0 |
| 0.6.0 | mmcv-full >= 1.3.16 | mmcls >= 0.19.0, <= 0.20.1 | mmseg >= 0.20.2 | mmdet >= 2.16.0 |
| 0.5.0 | mmcv-full >= 1.3.16 | / | mmseg >= 0.20.2 | mmdet >= 2.16.0 |


**注意:**
Expand Down
2 changes: 1 addition & 1 deletion mmselfsup/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) Open-MMLab. All rights reserved.

__version__ = '0.7.0'
__version__ = '0.7.1'


def parse_version_info(version_str):
Expand Down
2 changes: 1 addition & 1 deletion requirements/mminstall.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mmcls >= 0.19.0
mmcls >= 0.19.0, <= 0.20.1
mmcv-full>=1.3.16
mmdet >= 2.16.0
mmsegmentation >= 0.20.2
2 changes: 1 addition & 1 deletion requirements/runtime.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
future
matplotlib
mmcls
mmcls >= 0.19.0, <= 0.20.1
numpy
packaging
scipy
Expand Down

0 comments on commit 16d9bf2

Please sign in to comment.