Bump version to v0.11.1 (#256)

* bump version to v0.11.1

* minor fix

* minor fix

* minor fix

* minor fix
pull/274/head v0.11.1
LXXXXR 2021-05-21 16:36:08 +08:00 committed by GitHub
parent 82e3937174
commit dac090162d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 31 additions and 5 deletions

View File

@ -31,7 +31,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
## Changelog
v0.11.0 was released in 1/5/2021.
v0.11.1 was released in 21/5/2021.
Please refer to [changelog.md](docs/changelog.md) for details and release history.
## Benchmark and model zoo

View File

@ -30,7 +30,7 @@ MMClassification是一款基于PyTorch的开源图像分类工具箱是 [Open
## 更新日志
2021/5/1 发布了 v0.11.0 版本
2021/5/21 发布了 v0.11.1 版本
发布历史和更新细节请参考 [更新日志](docs/changelog.md)

View File

@ -1,5 +1,29 @@
## Changelog
### v0.11.1(21/5/2021)
- Refine `new_dataset.md` and add Chinese translation of `finture.md`, `new_dataset.md`. (#243)
#### New Features
- Add `dim` argument for `GlobalAveragePooling`. (#236)
- Add random noise to `RandAugment` magnitude. (#240)
- Refine `new_dataset.md` and add Chinese translation of `finture.md`, `new_dataset.md`. (#243)
#### Improvements
- Refactor arguments passing for Heads. (#239)
- Allow more flexible `magnitude_range` in `RandAugment`. (#249)
- Inherits MMCV registry so that in the future OpenMMLab repos like MMDet and MMSeg could directly use the backbones supported in MMCls. (#252)
#### Bug Fixes
- Fix typo in `analyze_results.py`. (#237)
- Fix typo in unittests. (#238)
- Check if specified tmpdir exists when testing to avoid deleting existing data. (#242 & #258)
- Add missing config files in `MANIFEST.in`. (#250 & #255)
- Use temporary directory under shared directory to collect results to avoid unavailability of temporary directory for multi-node testing. (#251)
### v0.11.0(1/5/2021)
- Support cutmix trick. (#198)

View File

@ -10,7 +10,8 @@ The compatible MMClassification and MMCV versions are as below. Please install t
| MMClassification version | MMCV version |
|:-------------------:|:-------------------:|
| master | mmcv>=1.3.0 |
| master | mmcv>=1.3.0, <=1.5.0 |
| 0.11.1 | mmcv>=1.3.0, <=1.5.0 |
| 0.11.0 | mmcv>=1.3.0 |
| 0.10.0 | mmcv>=1.3.0 |
| 0.9.0 | mmcv>=1.1.4 |

View File

@ -10,7 +10,8 @@ MMClassification 和 MMCV 的适配关系如下,请安装正确版本的 MMCV
| MMClassification 版本 | MMCV 版本 |
|:---------------------:|:-----------:|
| master | mmcv>=1.3.0 |
| master | mmcv>=1.3.0, <=1.5.0 |
| 0.11.1 | mmcv>=1.3.0, <=1.5.0 |
| 0.11.0 | mmcv>=1.3.0 |
| 0.10.0 | mmcv>=1.3.0 |
| 0.9.0 | mmcv>=1.1.4 |

View File

@ -1,6 +1,6 @@
# Copyright (c) Open-MMLab. All rights reserved.
__version__ = '0.11.0'
__version__ = '0.11.1'
def parse_version_info(version_str):