diff --git a/HISTORY.rst b/HISTORY.rst index 6772ccc6b..12056e5ac 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,22 @@ History ======= +0.5.0 (2016-09-26) +------------------ +New features: + +* `DateDataParser` now also returns detected language in the result dictionary. +* Explicit and lucid timezone conversion for a given datestring using `TIMEZONE`, `TO_TIMEZONE` settings. +* Added Hungarian langauge. +* Added setting, `STRICT_PARSING` to ignore imcomplete dates. + +Improvements: + +* Fixed quite a few parser bugs reported in issues #219, #222, #207, #224. +* Improved support for chinese language. +* Consistent interface for both Jalali and Hijri parsers. + + 0.4.0 (2016-06-17) ------------------ New features: diff --git a/dateparser/__init__.py b/dateparser/__init__.py index 0a75e9405..048078c35 100644 --- a/dateparser/__init__.py +++ b/dateparser/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '0.4.0' +__version__ = '0.5.0' from .date import DateDataParser from .conf import apply_settings