summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst6
-rw-r--r--src/bcrypt/__about__.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index ce04af0..fc08199 100644
--- a/README.rst
+++ b/README.rst
@@ -37,6 +37,12 @@ For Fedora and RHEL-derivatives, the following command will ensure that the requ
Changelog
=========
+3.1.2
+-----
+* Fixed a compile issue affecting big endian platforms.
+* Fixed invalid escape sequence warnings on Python 3.6.
+* Fixed building in non-UTF8 environments on Python 2.
+
3.1.1
-----
* Resolved a ``UserWarning`` when used with ``cffi`` 1.8.3.
diff --git a/src/bcrypt/__about__.py b/src/bcrypt/__about__.py
index f0e9882..f8940a3 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.1"
+__version__ = "3.1.2"
__author__ = "The Python Cryptographic Authority developers"
__email__ = "cryptography-dev@python.org"