We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a89320 commit 1632454Copy full SHA for 1632454
pyscrypt/__init__.py
@@ -35,6 +35,6 @@
35
from .file import InvalidScryptFileFormat, ScryptFile
36
from .hash import hash
37
38
-VERSION = [1, 4, 1]
+VERSION = [1, 5, 0]
39
40
__all__ = ['hash', 'InvalidScryptFileFormat', 'ScryptFile']
setup.py
@@ -8,7 +8,7 @@
8
reference and details.'''
9
10
setup(name = 'pyscrypt',
11
- version = '1.4.1',
+ version = '1.5.0',
12
description = 'Pure-Python Implementation of the scrypt password-based key derivation function and scrypt file format library',
13
long_description = LONG_DESCRIPTION,
14
author = 'Richard Moore',
0 commit comments