Prepare for the 3.2.2 release (#322)

This commit is contained in:
Alex Gaynor 2022-05-01 11:53:44 -06:00 committed by GitHub
parent 0df855d4ad
commit a86360fef7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

View File

@ -49,6 +49,11 @@ While bcrypt remains a good choice for password storage depending on your specif
Changelog
=========
3.2.2
-----
* Fixed packaging of ``py.typed`` files in wheels so that ``mypy`` works.
3.2.1
-----

View File

@ -24,6 +24,7 @@ classifiers =
[options]
python_requires = >=3.6
include_package_data = True
zip_safe = False
package_dir =
=src

View File

@ -32,7 +32,7 @@ __title__ = "bcrypt"
__summary__ = "Modern password hashing for your software and your servers"
__uri__ = "https://github.com/pyca/bcrypt/"
__version__ = "3.2.1"
__version__ = "3.2.2"
__author__ = "The Python Cryptographic Authority developers"
__email__ = "cryptography-dev@python.org"