diff options
| -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" |
