v0.7.0
diff --git a/panoramix/utils.py b/panoramix/utils.py
index 70c8146..f8eda5c 100644
--- a/panoramix/utils.py
+++ b/panoramix/utils.py
@@ -131,12 +131,6 @@
         self.hash_based = hash_based
 
     def get(self, s):
-        """
-        Get a consistent color from the same string using a hash function
-
-        >>> color("foo")
-        '#FF5A5F'
-        """
         if self.hash_based:
             s = s.encode('utf-8')
             h = hashlib.md5(s)
diff --git a/setup.py b/setup.py
index 6648e11..9c63d66 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 from setuptools import setup, find_packages
 
-version = '0.6.1'
+version = '0.7.0'
 
 setup(
     name='panoramix',