From ac212f45096c2d3905207853b12555a2188f21c5 Mon Sep 17 00:00:00 2001 From: artur Date: Tue, 12 Feb 2019 22:35:40 +0100 Subject: [PATCH] release 0.7.1 --- AUTHORS.rst | 4 ++++ HISTORY.rst | 19 +++++++++++++++++++ dateparser/__init__.py | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 8132be90f..59e69a3e0 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -13,10 +13,12 @@ Committers * Ammar Azif * Andrés Portillo * Andrey Zhelnin +* Andrey Rahmatullin * Artur Sadurski * Artur Gaspar * atchoum31 * Benjamin Bach +* Bruno Alla * Cesar Flores * CJStuart * Claudio Salazar @@ -44,6 +46,7 @@ Committers * Mateusz Golewski * Mats Gustafsson * Michael Palumbo +* msopko81 * nanolab * Opp Lieamsiriwong * Paul Tremberth @@ -51,6 +54,7 @@ Committers * phuslu * Rajat Goyal * Raul Gallegos +* Renne Rocha * Robert Schütz * Roman * Sakari Vaelma diff --git a/HISTORY.rst b/HISTORY.rst index 7a2e0f3e1..31856af2f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,25 @@ History ======= +0.7.1 (2019-02-12) +------------------ + +Features/news: + +* Added detected language to return value of `search_dates()` +* Performance improvements +* Refreshed versions of dependencies + +Improvements: + +* Fixed unpickleable `DateTime` objects with timezones +* Fixed regex pattern to avoid new behaviour of re.split in Python 3.7 +* Fixed an exception thrown when parsing colons +* Fixed tests failing on days with number greater than 30 +* Fixed `ZeroDivisionError` exceptions + + + 0.7.0 (2018-02-08) ------------------ diff --git a/dateparser/__init__.py b/dateparser/__init__.py index 51447c3ef..fdf9df7a7 100644 --- a/dateparser/__init__.py +++ b/dateparser/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '0.7.0' +__version__ = '0.7.1' from .date import DateDataParser from .conf import apply_settings