Skip to content

Commit

Permalink
Fix issue where "distance" was not being imported by __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
bunchesofdonald committed Sep 24, 2016
1 parent 992285c commit 1839a37
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
@@ -1,3 +1,4 @@
v0.4.1, 2016-09-24 -- Fix issue where `distance` wasn't being imported by __init__.
v0.3.2, 2015-08-01 -- Fixes a loss of precision when using hash_size other than 8.
v0.3.1, 2015-07-25 -- Fixes a memory leak in average hash algorithm.
v0.2.1, 2013-11-27 -- Fixes license in setup.py.
Expand Down
4 changes: 2 additions & 2 deletions photohash/__init__.py
@@ -1,3 +1,3 @@
from .photohash import average_hash, hash_distance, is_look_alike, hashes_are_similar
from .photohash import *

__version__ = '0.4.0'
__version__ = '0.4.1'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -19,7 +19,7 @@
name='Photohash',
packages=find_packages(),
url='https://github.com/bunchesofdonald/photohash',
version='0.4.0',
version='0.4.1',
install_requires=[
'Pillow>=2.1.0',
],
Expand Down

0 comments on commit 1839a37

Please sign in to comment.