diff --git a/pyscrypt/__init__.py b/pyscrypt/__init__.py index 44e6ea1..81835ed 100644 --- a/pyscrypt/__init__.py +++ b/pyscrypt/__init__.py @@ -34,6 +34,6 @@ from pyscrypt.hash import hash -VERSION = [1, 0] +VERSION = [1, 1] __all__ = ['hash'] diff --git a/setup.py b/setup.py index 95cdb0b..b192c14 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ Python libraries.''' setup(name = 'pyscrypt', - version = '1.0', + version = '1.1', description = 'Pure-Python Implementation of the scrypt password-based key derivation function', long_description = LONG_DESCRIPTION, author = 'Richard Moore',