summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2020-08-16 12:14:20 -0500
committerGitHub <noreply@github.com>2020-08-16 13:14:20 -0400
commitd5394252d6dd61e5a4eac75b5f75ba5de6bd7502 (patch)
tree78b3afd6ab2ec3eb6f312907ec61e2f0f2f4a93c
parent314c0f57aae910c1e0153c0ab23019bb11ce9072 (diff)
downloadpy-bcrypt-git-d5394252d6dd61e5a4eac75b5f75ba5de6bd7502.tar.gz
bump for 3.2.0 (#223)3.2.0
-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__)