Bump version to 0.23.2. (#937)

pull/953/head
Ma Zerun 2022-07-28 14:15:23 +08:00 committed by GitHub
parent 00f0e0d0be
commit 9300cc4e3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 6 deletions

View File

@ -4,7 +4,7 @@ ARG CUDNN="7"
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
ARG MMCV="1.4.2"
ARG MMCLS="0.23.1"
ARG MMCLS="0.23.2"
ENV PYTHONUNBUFFERED TRUE

View File

@ -1,5 +1,15 @@
# Changelog
## v0.23.2(28/7/2022)
### New Features
- Support MPS device. ([#894](https://github.com/open-mmlab/mmclassification/pull/894))
### Bug Fixes
- Fix a bug in Albu which caused crashing. ([#918](https://github.com/open-mmlab/mmclassification/pull/918))
## v0.23.1(2/6/2022)
### New Features

View File

@ -17,8 +17,8 @@ and make sure you fill in all required information in the template.
| MMClassification version | MMCV version |
| :----------------------: | :--------------------: |
| dev | mmcv>=1.5.0, \<1.6.0 |
| 0.23.1 (master) | mmcv>=1.4.2, \<1.6.0 |
| dev | mmcv>=1.6.0, \<1.7.0 |
| 0.23.2 (master) | mmcv>=1.4.2, \<1.7.0 |
| 0.22.1 | mmcv>=1.4.2, \<1.6.0 |
| 0.21.0 | mmcv>=1.4.2, \<=1.5.0 |
| 0.20.1 | mmcv>=1.4.2, \<=1.5.0 |

View File

@ -15,8 +15,8 @@
| MMClassification version | MMCV version |
| :----------------------: | :--------------------: |
| dev | mmcv>=1.5.0, \<1.6.0 |
| 0.23.1 (master) | mmcv>=1.4.2, \<1.6.0 |
| dev | mmcv>=1.6.0, \<1.7.0 |
| 0.23.2 (master) | mmcv>=1.4.2, \<1.6.0 |
| 0.22.1 | mmcv>=1.4.2, \<1.6.0 |
| 0.21.0 | mmcv>=1.4.2, \<=1.5.0 |
| 0.20.1 | mmcv>=1.4.2, \<=1.5.0 |

View File

@ -1,6 +1,6 @@
# Copyright (c) OpenMMLab. All rights reserved
__version__ = '0.23.1'
__version__ = '0.23.2'
def parse_version_info(version_str):