Skip to content

Commit

Permalink
Release 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
noviluni committed Mar 6, 2020
1 parent fa45c26 commit 4bdddd7
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .eggs/README.txt
Original file line number Diff line number Diff line change
@@ -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.

25 changes: 25 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
------------------

Expand Down
2 changes: 1 addition & 1 deletion dateparser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = '0.7.2'
__version__ = '0.7.3'

from .date import DateDataParser
from .conf import apply_settings
Expand Down

0 comments on commit 4bdddd7

Please sign in to comment.