Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
waqasshabbir committed Jun 16, 2016
1 parent 6f16f6b commit c550625
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
History
=======

0.4.0 (2016-06-17)
------------------
New features:

* Support for Language based date order preference while parsing ambiguous dates.
* Support for parsing dates with no spaces in between components.
* Support for custom date order preference using `settings`.
* Support for parsing generic relative dates in future.e.g. `tomorrow`, `in two weeks`, etc.
* Added `RELATIVE_BASE` settings to set date context to any datetime in past or future.
* Replaced dateutil.parser.parse with dateparser's own parser.

Improvements:

* Added simplifications for `12 noon` and `12 midnight`.
* Fixed several bugs
* Replaced PyYAML library by its active fork `ruamel.yaml` which also fixed the issues with installation on windows using python35.
* More predictable `date_formats` handling.


0.3.5 (2016-04-27)
------------------
New features:
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,12 @@ Dependencies
`dateparser` relies on following libraries in some ways:

* dateutil_'s module ``relativedelta`` for its freshness parser.
* PyYAML_ for reading language and configuration files.
* ruamel.yaml_ for reading language and configuration files.
* jdatetime_ to convert *Jalali* dates to *Gregorian*.
* umalqurra_ to convert *Hijri* dates to *Gregorian*.

.. _dateutil: https://pypi.python.org/pypi/python-dateutil
.. _PyYAML: https://pypi.python.org/pypi/PyYAML
.. _ruamel.yaml: https://pypi.python.org/pypi/ruamel.yaml
.. _jdatetime: https://pypi.python.org/pypi/jdatetime
.. _umalqurra: https://pypi.python.org/pypi/umalqurra/

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.3.5'
__version__ = '0.4.0'

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

0 comments on commit c550625

Please sign in to comment.