forked from pool/python-dateparser
* Breaking changes:
+ Drop support for Python 2.7 and pypy (see #727, #744, #748, #749, #754, #755, #758, #761, #763, #764, #777 and #783)
+ Now ``DateDataParser.get_date_data()`` returns a ``DateData`` object instead of a ``dict`` (see #778).
+ From now wrong ``settings`` are not silenced and raise ``SettingValidationError`` (see #797)
+ Now ``dateparser.parse()`` is deterministic and doesn't try previous locales. Also, ``DateDataParser.get_date_data()`` doesn't try the previous locales by default (see #781)
+ Remove the ``'base-formats'`` parser (see #721)
+ Extract the ``'no-spaces-time'`` parser from the ``'absolute-time'`` parser and make it an optional parser (see #786)
+ Remove ``numeral_translation_data`` (see #782)
+ Remove the undocumented ``SKIP_TOKENS_PARSER`` and ``FUZZY`` settings (see #728, #794)
+ Remove support for using strings in ``date_formats`` (see #726)
+ The undocumented ``ExactLanguageSearch`` class has been moved to the private scope and some internal methods have changed (see #778)
+ Changes in ``dateparser.utils``: ``normalize_unicode()`` doesn't accept ``bytes`` as input and ``convert_to_unicode`` has been deprecated (see #749)
* New features:
+ Add Python 3.9 support (see #732, #823)
+ Detect hours separated with a period/dot (see #741)
+ Add support for "decade" (see #762)
+ Add support for the hijri calendar in Python ≥ 3.6 (see #718)
+ Fix leap years when ``PREFER_DATES_FROM`` is set (see #738)
+ Fix ``STRICT_PARSING`` setting in ``no-spaces-time`` parser (see #715)
+ Consider ``RETURN_AS_TIME_PERIOD`` setting for ``relative-time`` parser (see #807)
+ Parse the 24hr time format with meridian info (see #634)
- Remove extranous %dir for egg-info.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-dateparser?expand=0&rev=10
94 lines
4.3 KiB
Plaintext
94 lines
4.3 KiB
Plaintext
-------------------------------------------------------------------
|
|
Wed Apr 7 06:37:13 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com>
|
|
|
|
- Update to 1.0.0:
|
|
* Breaking changes:
|
|
+ Drop support for Python 2.7 and pypy (see #727, #744, #748, #749, #754, #755, #758, #761, #763, #764, #777 and #783)
|
|
+ Now ``DateDataParser.get_date_data()`` returns a ``DateData`` object instead of a ``dict`` (see #778).
|
|
+ From now wrong ``settings`` are not silenced and raise ``SettingValidationError`` (see #797)
|
|
+ Now ``dateparser.parse()`` is deterministic and doesn't try previous locales. Also, ``DateDataParser.get_date_data()`` doesn't try the previous locales by default (see #781)
|
|
+ Remove the ``'base-formats'`` parser (see #721)
|
|
+ Extract the ``'no-spaces-time'`` parser from the ``'absolute-time'`` parser and make it an optional parser (see #786)
|
|
+ Remove ``numeral_translation_data`` (see #782)
|
|
+ Remove the undocumented ``SKIP_TOKENS_PARSER`` and ``FUZZY`` settings (see #728, #794)
|
|
+ Remove support for using strings in ``date_formats`` (see #726)
|
|
+ The undocumented ``ExactLanguageSearch`` class has been moved to the private scope and some internal methods have changed (see #778)
|
|
+ Changes in ``dateparser.utils``: ``normalize_unicode()`` doesn't accept ``bytes`` as input and ``convert_to_unicode`` has been deprecated (see #749)
|
|
* New features:
|
|
+ Add Python 3.9 support (see #732, #823)
|
|
+ Detect hours separated with a period/dot (see #741)
|
|
+ Add support for "decade" (see #762)
|
|
+ Add support for the hijri calendar in Python ≥ 3.6 (see #718)
|
|
+ Fix leap years when ``PREFER_DATES_FROM`` is set (see #738)
|
|
+ Fix ``STRICT_PARSING`` setting in ``no-spaces-time`` parser (see #715)
|
|
+ Consider ``RETURN_AS_TIME_PERIOD`` setting for ``relative-time`` parser (see #807)
|
|
+ Parse the 24hr time format with meridian info (see #634)
|
|
- Remove extranous %dir for egg-info.
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Jul 30 01:41:23 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
|
|
|
|
- Update to 0.7.6:
|
|
* Rename ``scripts`` to ``dateparser_scripts`` to avoid name collisions
|
|
with modules from other packages or projects
|
|
* Add Python 3.8 support
|
|
* Implement a ``REQUIRE_PARTS`` setting
|
|
* Add support for subscript and superscript numbers
|
|
* Extended French support
|
|
* Extended German support
|
|
- Switch from nose to pytest.
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Apr 2 09:44:00 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
|
|
|
- update to version 0.7.4
|
|
* Fixed Python 2.7 tests
|
|
* Extended Norwegian support
|
|
* Implement a PARSERS setting
|
|
* Add support for `PREFER_DATES_FROM` in relative/freshness parser
|
|
* Add support for `PREFER_DAY_OF_MONTH` in base-formats parser
|
|
* Added UTC -00:00 as a valid offset
|
|
* Fix support for “one”
|
|
* Fix tokenizer for non recognized characters
|
|
* Prevent installing regex 2019.02.19
|
|
* Added Hungarian language.
|
|
* Added setting, `STRICT_PARSING` to ignore incomplete dates.
|
|
* More simplifications for Russian and Ukrainian languages.
|
|
|
|
-------------------------------------------------------------------
|
|
Sat Sep 21 19:14:39 UTC 2019 - Arun Persaud <arun@gmx.de>
|
|
|
|
- specfile:
|
|
* be more precise in %file section
|
|
|
|
- update to version 0.7.2:
|
|
* 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
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Sep 13 12:39:48 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Fix license
|
|
- Format with spec-cleaner
|
|
- Remove py2 only parts
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Apr 3 10:33:33 AM UTC 2019 - John Vandenberg <jayvdb@gmail.com>
|
|
|
|
- Initial spec for v0.7.1
|