summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-02-21 09:41:10 -0600
committerAlex Gaynor <alex.gaynor@gmail.com>2017-02-21 10:41:10 -0500
commita955ab7b62d3f2a4892757d161bb4d950f16cc9a (patch)
tree436bc5deab940d0625b93fba4e51255863956755
parent36d6af6a5e96765f58cacb54159ddf8c17456c17 (diff)
downloadpy-bcrypt-git-3.1.3.tar.gz
add a changelog and bump to 3.1.3 (#107)3.1.3
-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"