From 4bdddd75892c0e9c57a3b3a12c50861296bed03d Mon Sep 17 00:00:00 2001 From: Marc Hernandez Cabot Date: Fri, 6 Mar 2020 11:58:40 +0100 Subject: [PATCH] Release 0.7.3 --- .eggs/README.txt | 6 ++++++ HISTORY.rst | 25 +++++++++++++++++++++++++ dateparser/__init__.py | 2 +- 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .eggs/README.txt diff --git a/.eggs/README.txt b/.eggs/README.txt new file mode 100644 index 000000000..5d0166882 --- /dev/null +++ b/.eggs/README.txt @@ -0,0 +1,6 @@ +This directory contains eggs that were downloaded by setuptools to build, test, and run plug-ins. + +This directory caches those eggs to prevent repeated downloads. + +However, it is safe to delete this directory. + diff --git a/HISTORY.rst b/HISTORY.rst index f6b5fdcc0..65bf4379b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,31 @@ History ======= +0.7.3 (2020-03-06) +------------------ + +New features: + +* Extended Norwegian support (see https://github.com/scrapinghub/dateparser/pull/598) +* Implement a PARSERS setting (see https://github.com/scrapinghub/dateparser/pull/603) + + +Improvements: + +* Add support for `PREFER_DATES_FROM` in relative/freshness parser (https://github.com/scrapinghub/dateparser/pull/414) +* Add support for `PREFER_DAY_OF_MONTH` in base-formats parser (see https://github.com/scrapinghub/dateparser/pull/611) +* Added UTC -00:00 as a valid offset (see https://github.com/scrapinghub/dateparser/pull/574) +* Fix support for “one” (see https://github.com/scrapinghub/dateparser/pull/593) +* Fix TypeError when parsing some invalid dates (see https://github.com/scrapinghub/dateparser/pull/536) +* Fix tokenizer for non recognized characters (see https://github.com/scrapinghub/dateparser/pull/622) +* Prevent installing regex 2019.02.19 (https://github.com/scrapinghub/dateparser/pull/600) +* Resolve DeprecationWarning related to raw string escape sequences (see https://github.com/scrapinghub/dateparser/pull/596) +* Implement a tox environment to build the documentation (https://github.com/scrapinghub/dateparser/pull/604) +* Improve tests stability (see https://github.com/scrapinghub/dateparser/pull/591, https://github.com/scrapinghub/dateparser/pull/605) +* Documentation improvements (see https://github.com/scrapinghub/dateparser/pull/510, https://github.com/scrapinghub/dateparser/pull/578, https://github.com/scrapinghub/dateparser/pull/619, https://github.com/scrapinghub/dateparser/pull/614, https://github.com/scrapinghub/dateparser/pull/620) +* Performance improvements (see https://github.com/scrapinghub/dateparser/pull/570, https://github.com/scrapinghub/dateparser/pull/569, https://github.com/scrapinghub/dateparser/pull/625) + + 0.7.2 (2019-09-17) ------------------ diff --git a/dateparser/__init__.py b/dateparser/__init__.py index d801e2059..8136c4129 100644 --- a/dateparser/__init__.py +++ b/dateparser/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '0.7.2' +__version__ = '0.7.3' from .date import DateDataParser from .conf import apply_settings