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