summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-09-17 21:55:16 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2016-09-17 22:55:16 -0400
commite977a1deea4712897f1cdae9ee682fef0e8fd1ce (patch)
treecc5ec162e36d2f1790555d16447c996c7937ca88
parent8825f7fb639a8beadeb9d91e290eabd6a9e1f02c (diff)
downloadpy-bcrypt-git-e977a1deea4712897f1cdae9ee682fef0e8fd1ce.tar.gz
changelog and bump to 3.1.1 (#93)3.1.1
* changelog and bump to 3.1.1 * simpler language
-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"