summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst4
-rw-r--r--src/bcrypt/__about__.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index bd5e967..ce04af0 100644
--- a/README.rst
+++ b/README.rst
@@ -37,6 +37,10 @@ For Fedora and RHEL-derivatives, the following command will ensure that the requ
Changelog
=========
+3.1.1
+-----
+* Resolved a ``UserWarning`` when used with ``cffi`` 1.8.3.
+
3.1.0
-----
* Added support for ``checkpw``, a convenience method for verifying a password.
diff --git a/src/bcrypt/__about__.py b/src/bcrypt/__about__.py
index c7674a6..f0e9882 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.1.0"
+__version__ = "3.1.1"
__author__ = "The Python Cryptographic Authority developers"
__email__ = "cryptography-dev@python.org"