Bump to 0.9.0 (#285)

* Bump to 0.9.0

* add version
This commit is contained in:
Jerry Jiarui XU 2020-12-01 21:10:55 -08:00 committed by GitHub
parent 0066ce884f
commit 90465128ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 2 deletions

View File

@ -46,7 +46,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
## Changelog
v0.7.0 was released in 07/10/2020.
v0.9.0 was released in 30/11/2020.
Please refer to [changelog.md](docs/changelog.md) for details and release history.
## Benchmark and model zoo

View File

@ -1,5 +1,26 @@
## Changelog
### V0.9 (30/11/2020)
**Highlights**
- Support 4 medical dataset, UNet and CGNet.
**New Features**
- Support RandomRotate transform ([#215](https://github.com/open-mmlab/mmsegmentation/pull/215), [#260](https://github.com/open-mmlab/mmsegmentation/pull/260))
- Support RGB2Gray transform ([#227](https://github.com/open-mmlab/mmsegmentation/pull/227))
- Support Rerange transform ([#228](https://github.com/open-mmlab/mmsegmentation/pull/228))
- Support ignore_index for BCE loss ([#210](https://github.com/open-mmlab/mmsegmentation/pull/210))
- Add modelzoo statistics ([#263](https://github.com/open-mmlab/mmsegmentation/pull/263))
- Support Dice evaluation metric ([#225](https://github.com/open-mmlab/mmsegmentation/pull/225))
- Support Adjust Gamma transform ([#232](https://github.com/open-mmlab/mmsegmentation/pull/232))
- Support CLAHE transform ([#229](https://github.com/open-mmlab/mmsegmentation/pull/229))
**Bug Fixes**
- Fixed detail API link ([#267](https://github.com/open-mmlab/mmsegmentation/pull/267))
### V0.8 (03/11/2020)
**Highlights**

View File

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