From 122448010bd9c9ddf98e0e1c4432b9f9311ef5b2 Mon Sep 17 00:00:00 2001 From: Junjun2016 Date: Wed, 1 Sep 2021 22:43:38 +0800 Subject: [PATCH] Bump to v0.17.0 (#841) --- README.md | 2 +- README_zh-CN.md | 2 +- docker/serve/Dockerfile | 4 ++-- docs/changelog.md | 31 +++++++++++++++++++++++++++++++ docs/get_started.md | 1 + docs_zh-CN/get_started.md | 1 + mmseg/version.py | 2 +- 7 files changed, 38 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a4f4a091ef..195988b0bd 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ This project is released under the [Apache 2.0 license](LICENSE). ## Changelog -v0.16.0 was released in 08/04/2021. +v0.17.0 was released in 09/01/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 42e3e7fdbe..757103d3b7 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -47,7 +47,7 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O ## 更新日志 -最新的月度版本 v0.16.0 在 2021.08.04 发布。 +最新的月度版本 v0.17.0 在 2021.09.01 发布。 如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)。 ## 基准测试和模型库 diff --git a/docker/serve/Dockerfile b/docker/serve/Dockerfile index 5b71998686..20ad07dff2 100644 --- a/docker/serve/Dockerfile +++ b/docker/serve/Dockerfile @@ -3,8 +3,8 @@ ARG CUDA="10.1" ARG CUDNN="7" FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel -ARG MMCV="1.3.1" -ARG MMSEG="0.13.0" +ARG MMCV="1.3.12" +ARG MMSEG="0.17.0" ENV PYTHONUNBUFFERED TRUE diff --git a/docs/changelog.md b/docs/changelog.md index 7b8c5f184b..d8f1d493c3 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,36 @@ ## Changelog +### V0.17 (09/01/2021) + +**Highlights** + +- Support SegFormer +- Support DPT +- Support Dark Zurich and Nighttime Driving datasets +- Support progressive evaluation + +**New Features** + +- Support SegFormer ([#599](https://github.com/open-mmlab/mmsegmentation/pull/599)) +- Support DPT ([#605](https://github.com/open-mmlab/mmsegmentation/pull/605)) +- Support Dark Zurich and Nighttime Driving datasets ([#815](https://github.com/open-mmlab/mmsegmentation/pull/815)) +- Support progressive evaluation ([#709](https://github.com/open-mmlab/mmsegmentation/pull/709)) + +**Improvements** + +- Add multiscale_output interface and unittests for HRNet ([#830](https://github.com/open-mmlab/mmsegmentation/pull/830)) +- Support inherit cityscapes dataset ([#750](https://github.com/open-mmlab/mmsegmentation/pull/750)) +- Fix some typos in README.md ([#824](https://github.com/open-mmlab/mmsegmentation/pull/824)) +- Delete convert function and add instruction to ViT/Swin README.md ([#791](https://github.com/open-mmlab/mmsegmentation/pull/791)) +- Add vit/swin/mit convert weight scripts ([#783](https://github.com/open-mmlab/mmsegmentation/pull/783)) +- Add copyright files ([#796](https://github.com/open-mmlab/mmsegmentation/pull/796)) + +**Bug Fixes** + +- Fix invalid checkpoint link in inference_demo.ipynb ([#814](https://github.com/open-mmlab/mmsegmentation/pull/814)) +- Ensure that items in dataset have the same order across multi machine ([#780](https://github.com/open-mmlab/mmsegmentation/pull/780)) +- Fix the log error ([#766](https://github.com/open-mmlab/mmsegmentation/pull/766)) + ### V0.16 (08/04/2021) **Highlights** diff --git a/docs/get_started.md b/docs/get_started.md index ccf9d94321..d8342bfb72 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.7, <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 | | 0.15.0 | mmcv-full>=1.3.7, <1.4.0 | | 0.14.1 | 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 2f5730e105..de2dcda4b9 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.7, <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 | | 0.15.0 | mmcv-full>=1.3.7, <1.4.0 | | 0.14.1 | mmcv-full>=1.3.7, <1.4.0 | diff --git a/mmseg/version.py b/mmseg/version.py index 34877bdff8..bf9fdb7351 100644 --- a/mmseg/version.py +++ b/mmseg/version.py @@ -1,6 +1,6 @@ # Copyright (c) Open-MMLab. All rights reserved. -__version__ = '0.16.0' +__version__ = '0.17.0' def parse_version_info(version_str):