Bump version to v0.23.1 (#863)

pull/872/head v0.23.1
Ma Zerun 2022-06-02 21:22:54 +08:00 committed by GitHub
parent ccdbc82e39
commit 313d35704f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 4 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.0"
ARG MMCLS="0.23.1"
ENV PYTHONUNBUFFERED TRUE

View File

@ -1,5 +1,24 @@
# Changelog
## v0.23.1(2/6/2022)
### New Features
- Dedicated MMClsWandbHook for MMClassification (Weights and Biases Integration) ([#764](https://github.com/open-mmlab/mmclassification/pull/764))
### Improvements
- Use mdformat instead of markdownlint to format markdown. ([#844](https://github.com/open-mmlab/mmclassification/pull/844))
### Bug Fixes
- Fix wrong `--local_rank`.
### Docs Update
- Update install tutorials. ([#854](https://github.com/open-mmlab/mmclassification/pull/854))
- Fix wrong link in README. ([#835](https://github.com/open-mmlab/mmclassification/pull/835))
## v0.23.0(1/5/2022)
### New Features

View File

@ -18,7 +18,7 @@ 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.0 (master) | mmcv>=1.4.2, \<1.6.0 |
| 0.23.1 (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

@ -16,7 +16,7 @@
| MMClassification version | MMCV version |
| :----------------------: | :--------------------: |
| dev | mmcv>=1.5.0, \<1.6.0 |
| 0.23.0 (master) | mmcv>=1.4.2, \<1.6.0 |
| 0.23.1 (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.0'
__version__ = '0.23.1'
def parse_version_info(version_str):