# HG changeset patch # User Alex Gaynor <alex.gaynor@gmail.com> # Date 1651427624 21600 # Sun May 01 11:53:44 2022 -0600 # Node ID b5590ab89f60e1666b55312aa06717887217bc3d # Parent 88ee82b26e475d06ed8127511a0ee5f2cbf8a3f5 Prepare for the 3.2.2 release (#322) diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -49,6 +49,11 @@ Changelog ========= +3.2.2 +----- + +* Fixed packaging of ``py.typed`` files in wheels so that ``mypy`` works. + 3.2.1 ----- diff --git a/setup.cfg b/setup.cfg --- a/setup.cfg +++ b/setup.cfg @@ -24,6 +24,7 @@ [options] python_requires = >=3.6 +include_package_data = True zip_safe = False package_dir = =src diff --git a/src/bcrypt/__about__.py b/src/bcrypt/__about__.py --- a/src/bcrypt/__about__.py +++ b/src/bcrypt/__about__.py @@ -32,7 +32,7 @@ __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"