14
0

- update to 1.2.0:

* New ``PREFER_MONTH_OF_YEAR`` setting (#1146)
  * Absolute years in Russian are no longer being treated as a
    number of years in the past (#1129)
  * Cleanups and internal improvements:
  * Removed the use of ``datetime.utcnow``, deprecated on Python
    3.12 (#1179)
  * Applied Black formatting to the code base (#1158)
  * Initial integration with OSSFuzz (#1198)
  * Extended test cases (#1191)
- Update to 1.1.3
- Update to 1.1.2
  * 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

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-dateparser?expand=0&rev=38
This commit is contained in:
2023-12-07 20:46:55 +00:00
committed by Git OBS Bridge
parent ed3b44448a
commit de91c33525
5 changed files with 38 additions and 28 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Thu Dec 7 20:46:37 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.2.0:
* New ``PREFER_MONTH_OF_YEAR`` setting (#1146)
* Absolute years in Russian are no longer being treated as a
number of years in the past (#1129)
* Cleanups and internal improvements:
* Removed the use of ``datetime.utcnow``, deprecated on Python
3.12 (#1179)
* Applied Black formatting to the code base (#1158)
* Initial integration with OSSFuzz (#1198)
* Extended test cases (#1191)
-------------------------------------------------------------------
Sat Oct 14 00:54:16 UTC 2023 - Matej Cepl <mcepl@cepl.eu>
@@ -63,7 +77,7 @@ Mon Jan 2 18:57:33 UTC 2023 - Dirk Müller <dmueller@suse.com>
-------------------------------------------------------------------
Mon Nov 7 21:15:24 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to 1.1.3
- Update to 1.1.3
New features:
* Add support for fractional units (#876)
Improvements:
@@ -78,7 +92,7 @@ Mon Nov 7 21:15:24 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
-------------------------------------------------------------------
Thu Oct 27 22:51:58 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to 1.1.2
- Update to 1.1.2
* Added support for negative timestamp (#1060)
* Fixed PytzUsageWarning for Python versions >= 3.6 (#1062)
* Added support for dates with dots and spaces (#1028)
@@ -188,13 +202,13 @@ 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
* 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.