diff --git a/CHANGELOG b/CHANGELOG index 500c582..d815cf4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,15 @@ Freezegun Changelog =================== +1.5.0 +---- + * The default ignore list now contains the `queue`-package + * Added a missing `move_to`-function when calling `freeze_time(tick=True)` + * Fixes a rounding error in `time.time_ns()` + * Fixed a bug where the default ignore list could not be empty (`configure(default_ignore_list=[])`) + * All `tick()` methods now return the new datetime (instead of None) + * Type improvements + 1.4.0 ----- * `asyncio`-support from 1.3.x introduced quite a few bugs, so that functionality is now hidden behind a flag: diff --git a/freezegun/__init__.py b/freezegun/__init__.py index 8fcb18d..c2996b7 100644 --- a/freezegun/__init__.py +++ b/freezegun/__init__.py @@ -9,7 +9,7 @@ from .config import configure __title__ = 'freezegun' -__version__ = '1.4.0' +__version__ = '1.5.0' __author__ = 'Steve Pulec' __license__ = 'Apache License 2.0' __copyright__ = 'Copyright 2012 Steve Pulec'