diff --git a/.gitignore b/.gitignore index d82201b6..a726f3aa 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ dist venv/ .idea htmlcov/ +.DS_Store diff --git a/CHANGELOG b/CHANGELOG index 38ebbc9b..25f0e80d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,12 @@ Freezegun Changelog =================== +1.2.1 +----- + +* Added missing typeshed types from distribution + + 1.2.0 ----- diff --git a/MANIFEST.in b/MANIFEST.in index 97da1394..7c9b8985 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,6 @@ include README.rst LICENSE AUTHORS.rst CHANGELOG pyproject.toml recursive-include tests * +include freezegun/py.typed +recursive-include freezegun *.pyi global-exclude __pycache__ global-exclude *.py[co] diff --git a/freezegun/__init__.py b/freezegun/__init__.py index 7a74fe9a..aee458b1 100644 --- a/freezegun/__init__.py +++ b/freezegun/__init__.py @@ -9,7 +9,7 @@ from .config import configure __title__ = 'freezegun' -__version__ = '1.2.0' +__version__ = '1.2.1' __author__ = 'Steve Pulec' __license__ = 'Apache License 2.0' __copyright__ = 'Copyright 2012 Steve Pulec'