15
0

Accepting request 896644 from home:alarrosa:branches:devel:languages:python

- Update to v2.0.1
  * Mark top-level names as exported so type checking understands
    imports in user projects.
  * Fix some types that weren’t available in Python 3.6.0.
- Update to v2.0.0
  * Drop Python 2.7, 3.4, and 3.5 support.
  * Markup.unescape uses html.unescape() to support HTML5 character
    references. #117
  * Add type annotations for static typing tools. #149

  * Fix segfault when __html__ method raises an exception when
    using the C speedups. The exception is now propagated
    correctly. (#109)

OBS-URL: https://build.opensuse.org/request/show/896644
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-MarkupSafe?expand=0&rev=33
This commit is contained in:
2021-06-01 18:21:31 +00:00
committed by Git OBS Bridge
parent db43ba758a
commit 54a7cb0e82
4 changed files with 21 additions and 6 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Tue Jun 1 10:23:06 UTC 2021 - Antonio Larrosa <alarrosa@suse.com>
- Update to v2.0.1
* Mark top-level names as exported so type checking understands
imports in user projects.
* Fix some types that werent available in Python 3.6.0.
- Update to v2.0.0
* Drop Python 2.7, 3.4, and 3.5 support.
* Markup.unescape uses html.unescape() to support HTML5 character
references. #117
* Add type annotations for static typing tools. #149
-------------------------------------------------------------------
Fri Apr 16 07:30:01 UTC 2021 - Dirk Müller <dmueller@suse.com>
@@ -7,7 +21,9 @@ Fri Apr 16 07:30:01 UTC 2021 - Dirk Müller <dmueller@suse.com>
Tue Mar 5 16:46:50 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 1.1.1:
* Fix segfault when __html__ method raises an exception when using the C speedups. The exception is now propagated correctly. (#109)
* Fix segfault when __html__ method raises an exception when
using the C speedups. The exception is now propagated
correctly. (#109)
-------------------------------------------------------------------
Thu Feb 21 16:13:28 UTC 2019 - John Vandenberg <jayvdb@gmail.com>