14
0

Accepting request 643259 from home:benoit_monin:branches:devel:languages:python

- update to version 3.0: major release
- update and adapt the patch for python-3.7
- run the tests via unittest discover
- remove nose from BuildRequires: not used anymore

OBS-URL: https://build.opensuse.org/request/show/643259
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Markdown?expand=0&rev=47
This commit is contained in:
Tomáš Chvátal
2018-10-19 19:47:18 +00:00
committed by Git OBS Bridge
parent e3e6d37042
commit ef891ff219
6 changed files with 53 additions and 19 deletions

View File

@@ -1,3 +1,39 @@
-------------------------------------------------------------------
Thu Oct 18 19:03:17 UTC 2018 - Benoît Monin <benoit.monin@gmx.fr>
- update to version 3.0: major release
* backwards-incompatible changes:
+ enable_attributes keyword deprecated
+ smart_emphasis keyword and smart_strong extension deprecated
+ output_formats simplified to html and xhtml
+ safe_mode and html_replacement_text keywords deprecated
+ Positional arguments deprecated
+ Extension name behavior has changed
+ Extension configuration as part of extension name deprecated
+ HeaderId extension deprecated
+ Homegrown OrderedDict has been replaced with a purpose-built
Registry
+ Markdown class instance references
+ markdown.util.isBlockLevel deprecated
+ md_globals keyword deprecated from extension API
+ Added new, more flexible InlineProcessor class
* new features:
+ a new testing framework is included as a part of the Markdown
library, which can also be used by third party extensions
+ a new toc_depth parameter has been added to the Table of
Contents Extension
+ new toc_tokens attribute has been added to the Markdown class
by the Table of Contents Extension
+ when the Table of Contents Extension is used in conjunction
with the Attribute Lists Extension and a data-toc-label
attribute is defined on a header, the content of the
data-toc-label attribute is now used as the content of the
Table of Contents item for that header
+ additional CSS class names can be appended to Admonitions
- update and adapt the patch for python-3.7
- run the tests via unittest discover
- remove nose from BuildRequires: not used anymore
-------------------------------------------------------------------
Tue Aug 7 07:51:51 UTC 2018 - tchvatal@suse.com