From bec24ea4ff55767256ac873c4b2e856d3f1dba1e Mon Sep 17 00:00:00 2001
From: Wenwei Zhang <40779233+ZwwWayne@users.noreply.github.com>
Date: Tue, 2 Mar 2021 15:34:22 +0800
Subject: [PATCH] Bump to v2.10.0 (#4692)

* bump to v2.10.0

* update other docs

* resolve comments

* resolve comments
---
 README.md           |  2 +-
 README_zh-CN.md     |  2 +-
 docs/changelog.md   | 38 ++++++++++++++++++++++++++++++++++++++
 docs/get_started.md |  1 +
 mmdet/version.py    |  2 +-
 5 files changed, 42 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 4d833c81..48d97d5a 100644
--- a/README.md
+++ b/README.md
@@ -44,7 +44,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
 
 ## Changelog
 
-v2.9.0 was released in 01/02/2021.
+v2.10.0 was released in 01/03/2021.
 Please refer to [changelog.md](docs/changelog.md) for details and release history.
 A comparison between v1.x and v2.0 codebases can be found in [compatibility.md](docs/compatibility.md).
 
diff --git a/README_zh-CN.md b/README_zh-CN.md
index 0aa3f7c1..9d7055d1 100644
--- a/README_zh-CN.md
+++ b/README_zh-CN.md
@@ -44,7 +44,7 @@ v1.x 鐨勫巻鍙茬増鏈敮鎸� PyTorch 1.1 鍒� 1.4锛屼絾鏄垜浠己鐑堝缓璁敤鎴�
 
 ## 鏇存柊鏃ュ織
 
-鏈€鏂扮殑鏈堝害鐗堟湰 v2.9.0 鍦� 2021.02.01 鍙戝竷銆�
+鏈€鏂扮殑鏈堝害鐗堟湰 v2.10.0 鍦� 2021.03.01 鍙戝竷銆�
 濡傛灉鎯充簡瑙f洿澶氱増鏈洿鏂扮粏鑺傚拰鍘嗗彶淇℃伅锛岃闃呰[鏇存柊鏃ュ織](docs/changelog.md)銆�
 鍦╗鍏煎鎬ц鏄庢枃妗(docs/compatibility.md)涓垜浠彁渚涗簡 1.x 鍜� 2.0 鐗堟湰鐨勮缁嗘瘮杈冦€�
 
diff --git a/docs/changelog.md b/docs/changelog.md
index bee750a4..6bab63dd 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -1,5 +1,43 @@
 ## Changelog
 
+### v2.10.0 (01/03/2021)
+
+#### Highlights
+
+- Support new methods: [FPG](https://arxiv.org/abs/2004.03580)
+- Support ONNX2TensorRT for SSD, FSAF, FCOS, YOLOv3, and Faster R-CNN.
+
+#### New Features
+
+- Support ONNX2TensorRT for SSD, FSAF, FCOS, YOLOv3, and Faster R-CNN (#4569)
+- Support [Feature Pyramid Grids (FPG)](https://arxiv.org/abs/2004.03580) (#4645)
+- Support video demo (#4420)
+- Add seed option for sampler (#4665)
+- Support to customize type of runner (#4570, #4669)
+- Support synchronizing BN buffer in `EvalHook` (#4582)
+- Add script for GIF demo (#4573)
+
+#### Bug Fixes
+
+- Fix ConfigDict AttributeError and add Colab link (#4643)
+- Avoid crash in empty gt training of GFL head (#4631)
+- Fix `iou_thrs` bug in RPN evaluation (#4581)
+- Fix syntax error of config when upgrading model version (#4584)
+
+#### Improvements
+
+- Refactor unit test file structures (#4600)
+- Refactor nms config (#4636)
+- Get loading pipeline by checking the class directly rather than through config strings (#4619)
+- Add doctests for mask target generation and mask structures (#4614)
+- Use deep copy when copying pipeline arguments (#4621)
+- Update documentations (#4642, #4650, #4620, #4630)
+- Remove redundant code calling `import_modules_from_strings` (#4601)
+- Clean deprecated FP16 API (#4571)
+- Check whether `CLASSES` is correctly initialized in the intialization of `XMLDataset` (#4555)
+- Support batch inference in the inference API (#4462, #4526)
+- Clean deprecated warning and fix 'meta' error (#4695)
+
 ### v2.9.0 (01/02/2021)
 
 #### Highlights
diff --git a/docs/get_started.md b/docs/get_started.md
index e3279947..d4501394 100644
--- a/docs/get_started.md
+++ b/docs/get_started.md
@@ -12,6 +12,7 @@ The compatible MMDetection and MMCV versions are as below. Please install the co
 | MMDetection version |    MMCV version     |
 |:-------------------:|:-------------------:|
 | master              | mmcv-full>=1.2.4, <1.3|
+| 2.10.0              | mmcv-full>=1.2.4, <1.3|
 | 2.9.0               | mmcv-full>=1.2.4, <1.3|
 | 2.8.0               | mmcv-full>=1.2.4, <1.3|
 | 2.7.0               | mmcv-full>=1.1.5, <1.3|
diff --git a/mmdet/version.py b/mmdet/version.py
index b1ea8c44..e704f88d 100644
--- a/mmdet/version.py
+++ b/mmdet/version.py
@@ -1,6 +1,6 @@
 # Copyright (c) Open-MMLab. All rights reserved.
 
-__version__ = '2.9.0'
+__version__ = '2.10.0'
 short_version = __version__
 
 
-- 
GitLab