From 90465128ce0ae4d833f4cfb6a00d81082ccaa71f Mon Sep 17 00:00:00 2001 From: Jerry Jiarui XU Date: Tue, 1 Dec 2020 21:10:55 -0800 Subject: [PATCH] Bump to 0.9.0 (#285) * Bump to 0.9.0 * add version --- README.md | 2 +- docs/changelog.md | 21 +++++++++++++++++++++ mmseg/version.py | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c5b5b94cc..0ea731fb85 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/changelog.md b/docs/changelog.md index bbea68349a..7b9c6ffb7b 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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** diff --git a/mmseg/version.py b/mmseg/version.py index d9db9abffe..48c1ac9eb5 100644 --- a/mmseg/version.py +++ b/mmseg/version.py @@ -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):