From b88561dbaac57151eeacc9ee12bce7ac2f04ff19 Mon Sep 17 00:00:00 2001
From: Kai Chen <chenkaidev@gmail.com>
Date: Sun, 14 Apr 2019 15:31:09 -0700
Subject: [PATCH] upgrade to v0.6.0

---
 INSTALL.md | 2 +-
 README.md  | 4 ++++
 setup.py   | 4 ++--
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/INSTALL.md b/INSTALL.md
index 32e4d001..14777c4d 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -6,7 +6,7 @@
 - Python 3.4+
 - PyTorch 1.0
 - Cython
-- [mmcv](https://github.com/open-mmlab/mmcv) >= 0.2.2
+- [mmcv](https://github.com/open-mmlab/mmcv) >= 0.2.5
 
 ### Install mmdetection
 
diff --git a/README.md b/README.md
index 7861d5bc..bd668f62 100644
--- a/README.md
+++ b/README.md
@@ -39,6 +39,10 @@ This project is released under the [Apache 2.0 license](LICENSE).
 
 ## Updates
 
+v0.6.0 (14/04/2019)
+- Various minor fixes and user experience improvements.
+- Replace NMS and SigmoidFocalLoss with Pytorch CUDA extensions.
+
 v0.6rc0(06/02/2019)
 - Migrate to PyTorch 1.0.
 
diff --git a/setup.py b/setup.py
index 724adf38..ea674369 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ def readme():
 
 MAJOR = 0
 MINOR = 6
-PATCH = 'rc0'
+PATCH = 0
 SUFFIX = ''
 SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX)
 
@@ -106,7 +106,7 @@ if __name__ == '__main__':
         setup_requires=['pytest-runner'],
         tests_require=['pytest'],
         install_requires=[
-            'mmcv', 'numpy', 'matplotlib', 'six', 'terminaltables',
+            'mmcv>=0.2.5', 'numpy', 'matplotlib', 'six', 'terminaltables',
             'pycocotools'
         ],
         zip_safe=False)
-- 
GitLab