summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-06-30 14:05:12 -0500
committerDonald Stufft <donald@stufft.io>2016-06-30 15:05:12 -0400
commitecc3d9642a7f6d862b4cac77e73d67266f5763b8 (patch)
treefcd16f5a3469690b1e6a4a729df4f016dee4301b
parentb3f472e33513b3c251affb120db7945a77f05adf (diff)
downloadpy-bcrypt-git-ecc3d9642a7f6d862b4cac77e73d67266f5763b8.tar.gz
Update changelog + 3.1.0 version bump (#88)3.1.0
-rw-r--r--README.rst4
-rw-r--r--src/bcrypt/__about__.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 3859bb8..bd5e967 100644
--- a/README.rst
+++ b/README.rst
@@ -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"