diff --git a/README.md b/README.md
index b3e425d2b4775447bb4b8df1974c598264be20a7..456fcb46650d745b3fc1c49b460a79577d78bb5a 100644
--- a/README.md
+++ b/README.md
@@ -38,6 +38,13 @@ This project is released under the [Apache 2.0 license](LICENSE).
 
 ## Updates
 
+v1.0rc0 (27/07/2019)
+- Implement lots of new methods and components (Mixed Precision Training, HTC, Libra R-CNN, Guided Anchoring, Empirical Attention, Mask Scoring R-CNN, Grid R-CNN (Plus), GHM, GCNet, FCOS, HRNet, Weight Standardization, etc.). Thank all collaborators!
+- Support two additional datasets: WIDER FACE and Cityscapes.
+- Refactoring for loss APIs and make it more flexible to adopt different losses and related hyper-parameters.
+- Speed up multi-gpu testing.
+- Integrate all compiling and installing in a single script.
+
 v0.6.0 (14/04/2019)
 - Up to 30% speedup compared to the model zoo.
 - Support both PyTorch stable and nightly version.
@@ -93,7 +100,7 @@ Results and models are available in the [Model zoo](MODEL_ZOO.md).
 | GHM                | 鉁�        | 鉁�        | 鈽�        | 鉁�        | 鉁�     |
 | Mask Scoring R-CNN | 鉁�        | 鉁�        | 鈽�        | 鉁�        | 鉁�     |
 | FCOS               | 鉁�        | 鉁�        | 鈽�        | 鉁�        | 鉁�     |
-| Grid R-CNN         | 鉁�        | 鉁�        | 鈽�        | 鉁�        | 鉁�     |
+| Grid R-CNN (Plus)  | 鉁�        | 鉁�        | 鈽�        | 鉁�        | 鉁�     |
 | Hybrid Task Cascade| 鉁�        | 鉁�        | 鈽�        | 鉁�        | 鉁�     |
 | Libra R-CNN        | 鉁�        | 鉁�        | 鈽�        | 鉁�        | 鉁�     |
 | Guided Anchoring   | 鉁�        | 鉁�        | 鈽�        | 鉁�        | 鉁�     |
diff --git a/setup.py b/setup.py
index c0920d9bc6179ad43ac34b6d80e3409defbd638d..73990e40e1a23c4845dc5edbba76c67c09e0f641 100644
--- a/setup.py
+++ b/setup.py
@@ -15,10 +15,10 @@ def readme():
     return content
 
 
-MAJOR = 0
-MINOR = 6
-PATCH = 0
-SUFFIX = ''
+MAJOR = 1
+MINOR = 0
+PATCH = ''
+SUFFIX = 'rc0'
 SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX)
 
 version_file = 'mmdet/version.py'
@@ -143,7 +143,7 @@ if __name__ == '__main__':
         setup_requires=['pytest-runner', 'cython', 'numpy'],
         tests_require=['pytest'],
         install_requires=[
-            'mmcv>=0.2.6', 'numpy', 'matplotlib', 'six', 'terminaltables',
+            'mmcv>=0.2.10', 'numpy', 'matplotlib', 'six', 'terminaltables',
             'pycocotools', 'torch>=1.1'
         ],
         ext_modules=[