From 55abdfd7606641baf6ed3082bbacd17c54ab51a6 Mon Sep 17 00:00:00 2001 From: Junjun2016 Date: Tue, 2 Nov 2021 17:30:31 +0800 Subject: [PATCH 1/2] change version to v0.19.0 --- README.md | 2 +- README_zh-CN.md | 2 +- docs/get_started.md | 1 + docs_zh-CN/get_started.md | 1 + mmseg/version.py | 2 +- 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d42729341d..c8d9027f93 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ This project is released under the [Apache 2.0 license](LICENSE). ## Changelog -v0.18.0 was released in 10/07/2021. +v0.19.0 was released in 11/02/2021. Please refer to [changelog.md](docs/changelog.md) for details and release history. ## Benchmark and model zoo diff --git a/README_zh-CN.md b/README_zh-CN.md index fef4f43e36..563233f3dd 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -48,7 +48,7 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O ## 更新日志 -最新的月度版本 v0.18.0 在 2021.10.07 发布。 +最新的月度版本 v0.19.0 在 2021.11.2 发布。 如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)。 ## 基准测试和模型库 diff --git a/docs/get_started.md b/docs/get_started.md index 78cafbf9d0..0aceb37587 100644 --- a/docs/get_started.md +++ b/docs/get_started.md @@ -12,6 +12,7 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the | MMSegmentation version | MMCV version | |:-------------------:|:-------------------:| | master | mmcv-full>=1.3.13, <1.4.0 | +| 0.19.0 | mmcv-full>=1.3.13, <1.4.0 | | 0.18.0 | mmcv-full>=1.3.13, <1.4.0 | | 0.17.0 | mmcv-full>=1.3.7, <1.4.0 | | 0.16.0 | mmcv-full>=1.3.7, <1.4.0 | diff --git a/docs_zh-CN/get_started.md b/docs_zh-CN/get_started.md index 2008c370be..ceda738e4a 100644 --- a/docs_zh-CN/get_started.md +++ b/docs_zh-CN/get_started.md @@ -12,6 +12,7 @@ | MMSegmentation 版本 | MMCV 版本 | |:-------------------:|:-------------------:| | master | mmcv-full>=1.3.13, <1.4.0 | +| 0.19.0 | mmcv-full>=1.3.13, <1.4.0 | | 0.18.0 | mmcv-full>=1.3.13, <1.4.0 | | 0.17.0 | mmcv-full>=1.3.7, <1.4.0 | | 0.16.0 | mmcv-full>=1.3.7, <1.4.0 | diff --git a/mmseg/version.py b/mmseg/version.py index bd2fd41acf..ad1d1efcfb 100644 --- a/mmseg/version.py +++ b/mmseg/version.py @@ -1,6 +1,6 @@ # Copyright (c) Open-MMLab. All rights reserved. -__version__ = '0.18.0' +__version__ = '0.19.0' def parse_version_info(version_str): From efc3e242c5ae3432a489deff3f9e3911246cf9c4 Mon Sep 17 00:00:00 2001 From: Junjun2016 Date: Tue, 2 Nov 2021 17:50:04 +0800 Subject: [PATCH 2/2] update changelog --- docs/changelog.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index 23124147a9..ca2c5078b5 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,45 @@ ## Changelog +### V0.19 (11/02/2021) + +**Highlights** + +- Support TIMMBackbone wrapper ([#998](https://github.com/open-mmlab/mmsegmentation/pull/998)) +- Support custom hook ([#428](https://github.com/open-mmlab/mmsegmentation/pull/428)) +- Add codespell pre-commit hook ([#920](https://github.com/open-mmlab/mmsegmentation/pull/920)) +- Add FastFCN benchmark on ADE20K ([#972](https://github.com/open-mmlab/mmsegmentation/pull/972)) + +**New Features** + +- Support TIMMBackbone wrapper ([#998](https://github.com/open-mmlab/mmsegmentation/pull/998)) +- Support custom hook ([#428](https://github.com/open-mmlab/mmsegmentation/pull/428)) +- Add FastFCN benchmark on ADE20K ([#972](https://github.com/open-mmlab/mmsegmentation/pull/972)) +- Add codespell pre-commit hook and fix typos ([#920](https://github.com/open-mmlab/mmsegmentation/pull/920)) + +**Improvements** + +- Make inputs & channels smaller in unittests ([#1004](https://github.com/open-mmlab/mmsegmentation/pull/1004)) +- Change `self.loss_decode` back to `dict` in Single Loss situation ([#1002](https://github.com/open-mmlab/mmsegmentation/pull/1002)) + +**Bug Fixes** + +- Fix typo in usage example ([#1003](https://github.com/open-mmlab/mmsegmentation/pull/1003)) +- Add contiguous after permutation in ViT ([#992](https://github.com/open-mmlab/mmsegmentation/pull/992)) +- Fix the invalid link ([#985](https://github.com/open-mmlab/mmsegmentation/pull/985)) +- Fix bug in CI with python 3.9 ([#994](https://github.com/open-mmlab/mmsegmentation/pull/994)) +- Fix bug when loading class name form file in custom dataset ([#923](https://github.com/open-mmlab/mmsegmentation/pull/923)) + +**Contributors** + +- @ShoupingShan made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/923 +- @RockeyCoss made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/954 +- @HarborYuan made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/992 +- @lkm2835 made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1003 +- @gszh made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/428 +- @VVsssssk +- @MengzhangLI +- @Junjun2016 + ### V0.18 (10/07/2021) **Highlights**