From 36ce9795c5810ffa1fb8626557280a90d8431467 Mon Sep 17 00:00:00 2001 From: holgern Date: Tue, 12 Feb 2019 10:57:35 +0100 Subject: [PATCH] Increase version --- README.rst | 5 +++++ scrypt/scrypt.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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',