15
0

- update to 20.0.1:

* CPython 3.7 and 3.8 and PyPy3 added to test matrix
  * Hyperlink now has type hints and they are now exported per
  [PEP 561](https://www.python.org/dev/peps/pep-0561/).
  * Several bugs related to hidden state were fixed, making it so that all data
  on a `URL` object (including `rooted` and `uses_netloc`) is reflected by and
  consistent with its textual representation.
  This does mean that sometimes these constructor arguments are ignored, if it
  would create invalid or unparseable URL text.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hyperlink?expand=0&rev=9
This commit is contained in:
2020-09-28 11:54:37 +00:00
committed by Git OBS Bridge
parent c689c55dc3
commit 3b49ed190c
4 changed files with 18 additions and 5 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Sep 28 11:54:08 UTC 2020 - Dirk Mueller <dmueller@suse.com>
- update to 20.0.1:
* CPython 3.7 and 3.8 and PyPy3 added to test matrix
* Hyperlink now has type hints and they are now exported per
[PEP 561](https://www.python.org/dev/peps/pep-0561/).
* Several bugs related to hidden state were fixed, making it so that all data
on a `URL` object (including `rooted` and `uses_netloc`) is reflected by and
consistent with its textual representation.
This does mean that sometimes these constructor arguments are ignored, if it
would create invalid or unparseable URL text.
-------------------------------------------------------------------
Wed May 22 10:15:01 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>