From a86360fef7859054c6a8050cf67e62127f5e2643 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 1 May 2022 11:53:44 -0600 Subject: [PATCH] Prepare for the 3.2.2 release (#322) --- README.rst | 5 +++++ setup.cfg | 1 + src/bcrypt/__about__.py | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 84f3759d..eb001d91 100644 --- a/README.rst +++ b/README.rst @@ -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 ----- diff --git a/setup.cfg b/setup.cfg index 1c810855..ed8f41a7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,6 +24,7 @@ classifiers = [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 8c16aced..8bcee8d9 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"