summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst8
-rw-r--r--src/bcrypt/__about__.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 22dc18c..77358b9 100644
--- a/README.rst
+++ b/README.rst
@@ -42,6 +42,14 @@ While bcrypt remains a good choice for password storage depending on your specif
Changelog
=========
+3.1.5
+-----
+
+* Added support for compilation on AIX.
+* Dropped Python 2.6 and 3.3 support.
+* Switched to using ``abi3`` wheels for Python 3. If you are not getting a
+ wheel on a compatible platform please upgrade your ``pip`` version.
+
3.1.4
-----
diff --git a/src/bcrypt/__about__.py b/src/bcrypt/__about__.py
index 4ddaae5..541d800 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.4"
+__version__ = "3.1.5"
__author__ = "The Python Cryptographic Authority developers"
__email__ = "cryptography-dev@python.org"