diff --git a/AUTHORS.rst b/AUTHORS.rst index 95092dd7f..4601dd9d5 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -6,7 +6,10 @@ Credits Committers ---------- +* Adam LeVasseur +* Alec Koumjian * Artur Sadurski +* Artur Gaspar * Claudio Salazar * Cesar Flores * Elias Dorneles diff --git a/HISTORY.rst b/HISTORY.rst index 911ff44d9..bb235c581 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,12 +3,18 @@ History ======= -x.x.x (xxxx-xx-xx) +0.3.3 (2016-02-29) ------------------ New features: * Finnish language support. +Improvements: + +* Faster parsing with switching to regex module. +* `RETURN_AS_TIMEZONE_AWARE` setting to return tz aware date object. +* Fixed conflicts with month/weekday names similarity across languages. + 0.3.2 (2016-01-25) ------------------ New features: diff --git a/README.rst b/README.rst index c24a50cf4..83b943de4 100644 --- a/README.rst +++ b/README.rst @@ -156,3 +156,4 @@ Supported Calendars {'date_obj': datetime.datetime(2015, 10, 30, 20, 30), 'period': 'day'} .. note:: `HijriCalendar` has some limitations with Python 3. +.. note:: For `Finnish` language, please specify `settings={'SKIP_TOKENS': []}` to correctly parse freshness dates. diff --git a/dateparser/__init__.py b/dateparser/__init__.py index 4a4a45538..628d6ad1f 100644 --- a/dateparser/__init__.py +++ b/dateparser/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '0.3.2' +__version__ = '0.3.3' from .date import DateDataParser from .conf import apply_settings