diff --git a/README.rst b/README.rst index 88ee82b26e475d06ed8127511a0ee5f2cbf8a3f5_UkVBRE1FLnJzdA==..b5590ab89f60e1666b55312aa06717887217bc3d_UkVBRE1FLnJzdA== 100644 --- 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 index 88ee82b26e475d06ed8127511a0ee5f2cbf8a3f5_c2V0dXAuY2Zn..b5590ab89f60e1666b55312aa06717887217bc3d_c2V0dXAuY2Zn 100644 --- 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 index 88ee82b26e475d06ed8127511a0ee5f2cbf8a3f5_c3JjL2JjcnlwdC9fX2Fib3V0X18ucHk=..b5590ab89f60e1666b55312aa06717887217bc3d_c3JjL2JjcnlwdC9fX2Fib3V0X18ucHk= 100644 --- 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"