Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jan 23, 2016
1 parent b472cad commit 012a651
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions panoramix/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,6 @@ def __init__(self, hash_based=True):
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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = '0.6.1'
version = '0.7.0'

setup(
name='panoramix',
Expand Down

0 comments on commit 012a651

Please sign in to comment.