diff --git a/AUTHORS.rst b/AUTHORS.rst index 59e69a3e0..b417560ba 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -7,16 +7,19 @@ Committers ---------- * Adam LeVasseur +* Adrián Chaves * Ahmad Musaffa * Alec Koumjian * Alexis Svinartchouk * Ammar Azif +* Anderson Berg * Andrés Portillo -* Andrey Zhelnin * Andrey Rahmatullin +* Andrey Zhelnin * Artur Sadurski * Artur Gaspar * atchoum31 +* Atul Krishna * Benjamin Bach * Bruno Alla * Cesar Flores @@ -26,6 +29,8 @@ Committers * David Beitey * Dawid Wolski * demelziraptor +* Derek Schmidt +* Dongkuo Ma * Edwin Zhang * Elena Zakharova * Elias Dorneles @@ -34,13 +39,18 @@ Committers * Fernando Tricas García * Georgi Valkov * Hristo Vrigazov +* Hugo van Kemenade * ishirav * Ismael Carnales * James M. Allen * Ján Jančár +* Jan Rygl +* Jakub Kukul * Jolo Balbin * Joseph Kahn +* Kishan Mehta * Konstantin Lopuhin +* Marc Hernández * Mark Baas * Marko Horvatić * Mateusz Golewski diff --git a/HISTORY.rst b/HISTORY.rst index 31856af2f..6643dfa5b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,30 @@ History ======= +0.7.2 (2019-09-17) +------------------ + +Features: + +* Extended Czech support +* Added `time` to valid periods +* Added timezone information to dates found with `search_dates()` +* Support strings as date formats + + +Improvements: + +* Fixed Collections ABCs depreciation warning +* Fixed dates with trailing colons not being parsed +* Fixed date format override on any settings change +* Fixed parsing current weekday as past date, regardless of settings +* Added UTC -2:30 as a valid offset +* Added Python 3.7 to supported versions, dropped support for Python 3.3 and 3.4 +* Moved to importlib from imp where possible +* Improved support for Catalan +* Documentation improvements + + 0.7.1 (2019-02-12) ------------------ diff --git a/dateparser/__init__.py b/dateparser/__init__.py index fdf9df7a7..d801e2059 100644 --- a/dateparser/__init__.py +++ b/dateparser/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '0.7.1' +__version__ = '0.7.2' from .date import DateDataParser from .conf import apply_settings