Skip to content

Commit

Permalink
Fixed missing type files (fix #443)
Browse files Browse the repository at this point in the history
  • Loading branch information
boxed committed Mar 18, 2022
1 parent 367e7df commit f95a818
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -7,3 +7,4 @@ dist
venv/
.idea
htmlcov/
.DS_Store
6 changes: 6 additions & 0 deletions CHANGELOG
@@ -1,6 +1,12 @@
Freezegun Changelog
===================

1.2.1
-----

* Added missing typeshed types from distribution


1.2.0
-----

Expand Down
2 changes: 2 additions & 0 deletions 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]
2 changes: 1 addition & 1 deletion freezegun/__init__.py
Expand Up @@ -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'
Expand Down

0 comments on commit f95a818

Please sign in to comment.