summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst5
-rw-r--r--src/bcrypt/__about__.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index fc08199..7ac19d9 100644
--- a/README.rst
+++ b/README.rst
@@ -37,6 +37,11 @@ For Fedora and RHEL-derivatives, the following command will ensure that the requ
Changelog
=========
+3.1.3
+-----
+* Fixed a compilation issue on Solaris.
+* Added a warning when using too few rounds with ``kdf``.
+
3.1.2
-----
* Fixed a compile issue affecting big endian platforms.
diff --git a/src/bcrypt/__about__.py b/src/bcrypt/__about__.py
index f8940a3..1d49d7a 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.2"
+__version__ = "3.1.3"
__author__ = "The Python Cryptographic Authority developers"
__email__ = "cryptography-dev@python.org"