summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst8
-rw-r--r--src/bcrypt/__about__.py4
2 files changed, 6 insertions, 6 deletions
diff --git a/README.rst b/README.rst
index 29f1e2d..318fb1d 100644
--- a/README.rst
+++ b/README.rst
@@ -53,12 +53,12 @@ Changelog
=========
-Unreleased
-----------
-
-* Add typehints for library functions
+3.2.0
+-----
+* Added typehints for library functions.
* Dropped support for Python versions less than 3.6 (2.7, 3.4, 3.5).
+* Shipped ``abi3`` Windows wheels (requires pip >= 20).
3.1.7
-----
diff --git a/src/bcrypt/__about__.py b/src/bcrypt/__about__.py
index 0b80173..0d9b6bf 100644
--- a/src/bcrypt/__about__.py
+++ b/src/bcrypt/__about__.py
@@ -32,10 +32,10 @@ __title__ = "bcrypt"
__summary__ = "Modern password hashing for your software and your servers"
__uri__ = "https://github.com/pyca/bcrypt/"
-__version__ = "3.1.8.dev1"
+__version__ = "3.2.0"
__author__ = "The Python Cryptographic Authority developers"
__email__ = "cryptography-dev@python.org"
__license__ = "Apache License, Version 2.0"
-__copyright__ = "Copyright 2013-2019 {0}".format(__author__)
+__copyright__ = "Copyright 2013-2020 {0}".format(__author__)