Skip to content

Commit ee66167

Browse files
authored
Bump to v0.16.0 (open-mmlab#749)
* Bump to v0.16.0 * fix doc * fix changelog * fix changelog
1 parent f934084 commit ee66167

File tree

6 files changed

+48
-3
lines changed

6 files changed

+48
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
4848

4949
## Changelog
5050

51-
v0.15.0 was released in 07/04/2021.
51+
v0.16.0 was released in 08/04/2021.
5252
Please refer to [changelog.md](docs/changelog.md) for details and release history.
5353

5454
## Benchmark and model zoo

README_zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O
4747

4848
## 更新日志
4949

50-
最新的月度版本 v0.15.0 在 2021.07.04 发布。
50+
最新的月度版本 v0.16.0 在 2021.08.04 发布。
5151
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)
5252

5353
## 基准测试和模型库

docs/changelog.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,48 @@
11
## Changelog
22

3+
### V0.16 (08/04/2021)
4+
5+
**Highlights**
6+
7+
- Support PyTorch 1.9
8+
- Support SegFormer backbone MiT
9+
- Support md2yml pre-commit hook
10+
- Support frozen stage for HRNet
11+
12+
**New Features**
13+
14+
- Support SegFormer backbone MiT ([#594](https://github.com/open-mmlab/mmsegmentation/pull/594))
15+
- Support md2yml pre-commit hook ([#732](https://github.com/open-mmlab/mmsegmentation/pull/732))
16+
- Support mim ([#717](https://github.com/open-mmlab/mmsegmentation/pull/717))
17+
- Add mmseg2torchserve tool ([#552](https://github.com/open-mmlab/mmsegmentation/pull/552))
18+
19+
**Improvements**
20+
21+
- Support hrnet frozen stage ([#743](https://github.com/open-mmlab/mmsegmentation/pull/743))
22+
- Add template of reimplementation questions ([#741](https://github.com/open-mmlab/mmsegmentation/pull/741))
23+
- Output pdf and epub formats for readthedocs ([#742](https://github.com/open-mmlab/mmsegmentation/pull/742))
24+
- Refine the docstring of ResNet ([#723](https://github.com/open-mmlab/mmsegmentation/pull/723))
25+
- Replace interpolate with resize ([#731](https://github.com/open-mmlab/mmsegmentation/pull/731))
26+
- Update resource limit ([#700](https://github.com/open-mmlab/mmsegmentation/pull/700))
27+
- Update config.md ([#678](https://github.com/open-mmlab/mmsegmentation/pull/678))
28+
29+
**Bug Fixes**
30+
31+
- Fix ATTENTION registry ([#729](https://github.com/open-mmlab/mmsegmentation/pull/729))
32+
- Fix analyze log script ([#716](https://github.com/open-mmlab/mmsegmentation/pull/716))
33+
- Fix doc api display ([#725](https://github.com/open-mmlab/mmsegmentation/pull/725))
34+
- Fix patch_embed and pos_embed mismatch error ([#685](https://github.com/open-mmlab/mmsegmentation/pull/685))
35+
- Fix efficient test for multi-node ([#707](https://github.com/open-mmlab/mmsegmentation/pull/707))
36+
- Fix init_cfg in resnet backbone ([#697](https://github.com/open-mmlab/mmsegmentation/pull/697))
37+
- Fix efficient test bug ([#702](https://github.com/open-mmlab/mmsegmentation/pull/702))
38+
- Fix url error in config docs ([#680](https://github.com/open-mmlab/mmsegmentation/pull/680))
39+
- Fix mmcv installation ([#676](https://github.com/open-mmlab/mmsegmentation/pull/676))
40+
- Fix torch version ([#670](https://github.com/open-mmlab/mmsegmentation/pull/670))
41+
42+
**Contributors**
43+
44+
@sshuair @xiexinch @Junjun2016 @mmeendez8 @xvjiarui @sennnnn @puhsu @BIGWangYuDong @keke1u @daavoo
45+
346
### V0.15 (07/04/2021)
447

548
**Highlights**

docs/get_started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the
1212
| MMSegmentation version | MMCV version |
1313
|:-------------------:|:-------------------:|
1414
| master | mmcv-full>=1.3.7, <1.4.0 |
15+
| 0.16.0 | mmcv-full>=1.3.7, <1.4.0 |
1516
| 0.15.0 | mmcv-full>=1.3.7, <1.4.0 |
1617
| 0.14.1 | mmcv-full>=1.3.7, <1.4.0 |
1718
| 0.14.0 | mmcv-full>=1.3.1, <1.3.2 |

docs_zh-CN/get_started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
| MMSegmentation 版本 | MMCV 版本 |
1313
|:-------------------:|:-------------------:|
1414
| master | mmcv-full>=1.3.7, <1.4.0 |
15+
| 0.16.0 | mmcv-full>=1.3.7, <1.4.0 |
1516
| 0.15.0 | mmcv-full>=1.3.7, <1.4.0 |
1617
| 0.14.1 | mmcv-full>=1.3.7, <1.4.0 |
1718
| 0.14.0 | mmcv-full>=1.3.1, <1.4.0 |

mmseg/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) Open-MMLab. All rights reserved.
22

3-
__version__ = '0.15.0'
3+
__version__ = '0.16.0'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)