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