From a51d9bd31c9c28f43bf069f87b42e0cd3454001e Mon Sep 17 00:00:00 2001 From: Serhii A Date: Mon, 21 Nov 2022 23:25:06 +0200 Subject: [PATCH] Release 1.1.4 (#1101) --- HISTORY.rst | 12 ++++++++++++ dateparser/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 586fe1c9e..ea16a10f2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,18 @@ History ======= +1.1.4 (2022-11-21) +------------------ + +Improvements: + +- Improved support for languages such as Slovak, Indonesian, Hindi, German and Japanese (#1064, #1094, #986, #1071, #1068) +- Recursively create a model home (#996) +- Replace regex sub with simple string replace (#1095) +- Add Python 3.10, 3.11 support (#1096) +- Drop support for Python 3.5, 3.6 versions (#1097) + + 1.1.3 (2022-11-03) ------------------ diff --git a/dateparser/__init__.py b/dateparser/__init__.py index aa9f46f5b..d65c59964 100644 --- a/dateparser/__init__.py +++ b/dateparser/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.1.3' +__version__ = '1.1.4' from .date import DateDataParser from .conf import apply_settings