From 2726c47b28617e4a244bc6de3f086fd5ec30a83e Mon Sep 17 00:00:00 2001 From: Waqas Shabir Date: Mon, 13 Mar 2017 07:52:06 +0500 Subject: [PATCH] Release 0.6.0 --- HISTORY.rst | 18 ++++++++++++++++++ dateparser/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 868b2f3a9..9b07c69c9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,24 @@ History ======= +0.6.0 (2017-03-13) +------------------ + +New features: +* Consistent parsing in terms of true python representation of date string. See #281 +* Added support for Bangla, Bulgarian and Hindi languages. + +Improvements: + +* Major bug fixes related to parser and system's locale. See #277, #282 +* Type check for timezone arguments in settings. see #267 +* Pinned dependencies' versions in requirements. See #265 +* Improved support for cn, es, dutch languages. See #274, #272, #285 + +Packaging: +* Make calendars extras to be used at the time of installation if need to use calendars feature. + + 0.5.1 (2016-12-18) ------------------ diff --git a/dateparser/__init__.py b/dateparser/__init__.py index cdb5fa187..ca43301ae 100644 --- a/dateparser/__init__.py +++ b/dateparser/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '0.5.1' +__version__ = '0.6.0' from .date import DateDataParser from .conf import apply_settings