diff --git a/README.rst b/README.rst index 8eca1bf..858a2e5 100644 --- a/README.rst +++ b/README.rst @@ -90,6 +90,11 @@ PyPy as well. Changelog ========= +0.8.10 +------ + +* fix typo + 0.8.9 ----- diff --git a/scrypt/scrypt.py b/scrypt/scrypt.py index 4357aab..730946e 100644 --- a/scrypt/scrypt.py +++ b/scrypt/scrypt.py @@ -10,7 +10,7 @@ c_size_t, c_double, c_int, c_uint64, c_uint32, create_string_buffer) -__version__ = '0.8.6' +__version__ = '0.8.10' _scrypt = cdll.LoadLibrary(imp.find_module('_scrypt')[1]) diff --git a/setup.py b/setup.py index f56c55f..012bb2f 100644 --- a/setup.py +++ b/setup.py @@ -98,7 +98,7 @@ libraries=libraries) setup(name='scrypt', - version='0.8.9', + version='0.8.10', description='Bindings for the scrypt key derivation function library', author='Magnus Hallin', author_email='mhallin@gmail.com',