From 18593f6da2a0cc5a5956b59a55a012ef27861ea2 Mon Sep 17 00:00:00 2001
From: Kai Chen <chenkaidev@gmail.com>
Date: Thu, 17 Jan 2019 18:59:47 +0800
Subject: [PATCH] update to v0.5.6

---
 README.md | 10 ++++++++++
 setup.py  |  6 +++---
 2 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 5e7f64d..57fe902 100644
--- a/README.md
+++ b/README.md
@@ -36,6 +36,10 @@ This project is released under the [Apache 2.0 license](LICENSE).
 
 ## Updates
 
+v0.5.6 (17/01/2019)
+- Add support for Group Normalization.
+- Unify RPNHead and single stage heads (RetinaHead, SSDHead) with AnchorHead.
+
 v0.5.5 (22/12/2018)
 - Add SSD for COCO and PASCAL VOC.
 - Add ResNeXt backbones and detection models.
@@ -73,6 +77,12 @@ Results and models are available in the [Model zoo](MODEL_ZOO.md).
 | SSD                | ✗        | ✗        | ✗        | ✓        |
 | RetinaNet          | ✓        | ✓        | ☐        | ✗        |
 
+Other features
+- [x] Group Normalization
+- [x] OHEM
+- [x] Soft-NMS
+
+
 ## Installation
 
 Please refer to [INSTALL.md](INSTALL.md) for installation and dataset preparation.
diff --git a/setup.py b/setup.py
index 699c928..2100b48 100644
--- a/setup.py
+++ b/setup.py
@@ -5,14 +5,14 @@ from setuptools import find_packages, setup
 
 
 def readme():
-    with open('README.md') as f:
+    with open('README.md', encoding='utf-8') as f:
         content = f.read()
     return content
 
 
 MAJOR = 0
 MINOR = 5
-PATCH = 5
+PATCH = 6
 SUFFIX = ''
 SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX)
 
@@ -89,7 +89,7 @@ if __name__ == '__main__':
         long_description=readme(),
         keywords='computer vision, object detection',
         url='https://github.com/open-mmlab/mmdetection',
-        packages=find_packages(exclude=('configs', 'tools', 'demo',)),
+        packages=find_packages(exclude=('configs', 'tools', 'demo')),
         package_data={'mmdet.ops': ['*/*.so']},
         classifiers=[
             'Development Status :: 4 - Beta',
-- 
GitLab