From 78dc29866aca496642742f6c7aeffbc1bb508043 Mon Sep 17 00:00:00 2001 From: Serhii A Date: Thu, 29 Dec 2022 15:48:20 +0200 Subject: [PATCH] Release 1.1.5 (#1114) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Release 1.1.5 * Update HISTORY.rst Co-authored-by: Adrián Chaves * Update HISTORY.rst Co-authored-by: Adrián Chaves * Update HISTORY.rst Co-authored-by: Adrián Chaves * Update HISTORY.rst Co-authored-by: Adrián Chaves Co-authored-by: Adrián Chaves --- HISTORY.rst | 17 +++++++++++++++++ dateparser/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) 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