diff --git a/HISTORY.rst b/HISTORY.rst index ea16a10f2..22834d884 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,23 @@ History ======= +1.1.5 (2022-12-29) +------------------ + +Improvements: + +- Parse short versions of day, month, and year (#1103) +- Add a test for “in 1d” (#1104) +- Update languages_info (#1107) +- Add a workaround for zipimporter not having exec_module before Python 3.10 (#1069) +- Stabilize tests at midnight (#1111) +- Add a test case for French (#1110) + +Cleanups: + +- Remove the requirements-build file (#1113) + + 1.1.4 (2022-11-21) ------------------ diff --git a/dateparser/__init__.py b/dateparser/__init__.py index d65c59964..170d99baf 100644 --- a/dateparser/__init__.py +++ b/dateparser/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.1.4' +__version__ = '1.1.5' from .date import DateDataParser from .conf import apply_settings