diff options
| author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-06-30 14:05:12 -0500 |
|---|---|---|
| committer | Donald Stufft <donald@stufft.io> | 2016-06-30 15:05:12 -0400 |
| commit | ecc3d9642a7f6d862b4cac77e73d67266f5763b8 (patch) | |
| tree | fcd16f5a3469690b1e6a4a729df4f016dee4301b | |
| parent | b3f472e33513b3c251affb120db7945a77f05adf (diff) | |
| download | py-bcrypt-git-ecc3d9642a7f6d862b4cac77e73d67266f5763b8.tar.gz | |
Update changelog + 3.1.0 version bump (#88)3.1.0
| -rw-r--r-- | README.rst | 4 | ||||
| -rw-r--r-- | src/bcrypt/__about__.py | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -39,8 +39,10 @@ Changelog 3.1.0 ----- -* Added support for ``checkpw`` as another method of verifying a password. +* Added support for ``checkpw``, a convenience method for verifying a password. * Ensure that you get a ``$2y$`` hash when you input a ``$2y$`` salt. +* Fixed a regression where ``$2a`` hashes were vulnerable to a wraparound bug. +* Fixed compilation under Alpine Linux. 3.0.0 ----- diff --git a/src/bcrypt/__about__.py b/src/bcrypt/__about__.py index e7fc766..c7674a6 100644 --- a/src/bcrypt/__about__.py +++ b/src/bcrypt/__about__.py @@ -26,7 +26,7 @@ __title__ = "bcrypt" __summary__ = "Modern password hashing for your software and your servers" __uri__ = "https://github.com/pyca/bcrypt/" -__version__ = "3.0.0" +__version__ = "3.1.0" __author__ = "The Python Cryptographic Authority developers" __email__ = "cryptography-dev@python.org" |
