From 831f09e4fcf51f797836a1def715c140854f693d Mon Sep 17 00:00:00 2001 From: Serhii A Date: Thu, 12 Jan 2023 11:08:15 +0200 Subject: [PATCH] Release 1.1.6 (#1124) --- HISTORY.rst | 9 +++++++++ dateparser/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 22834d884..15f476394 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,15 @@ History ======= +1.1.6 (2022-01-12) +------------------ + +Improvements: + +- Fix the bug where Monday is parsed as a month (#1121) +- Prevent ReDoS in Spanish sentence splitting regex (#1084) + + 1.1.5 (2022-12-29) ------------------ diff --git a/dateparser/__init__.py b/dateparser/__init__.py index 170d99baf..1dc6ea632 100644 --- a/dateparser/__init__.py +++ b/dateparser/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.1.5' +__version__ = '1.1.6' from .date import DateDataParser from .conf import apply_settings