Hello community, here is the log from the commit of package python-Markdown for openSUSE:Factory checked in at 2015-12-03 13:30:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-Markdown (Old) and /work/SRC/openSUSE:Factory/.python-Markdown.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-Markdown" Changes: -------- --- /work/SRC/openSUSE:Factory/python-Markdown/python-Markdown.changes 2015-11-22 11:00:02.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.python-Markdown.new/python-Markdown.changes 2015-12-03 13:30:11.000000000 +0100 @@ -1,0 +2,5 @@ +Wed Nov 25 19:45:00 UTC 2015 - benoit.mo...@gmx.fr + +- update to version 2.6.5: bugfix release + +------------------------------------------------------------------- Old: ---- Markdown-2.6.4.tar.gz New: ---- Markdown-2.6.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-Markdown.spec ++++++ --- /var/tmp/diff_new_pack.LOf9cb/_old 2015-12-03 13:30:12.000000000 +0100 +++ /var/tmp/diff_new_pack.LOf9cb/_new 2015-12-03 13:30:12.000000000 +0100 @@ -17,7 +17,7 @@ Name: python-Markdown -Version: 2.6.4 +Version: 2.6.5 Release: 0 Summary: Python implementation of Markdown License: BSD-3-Clause ++++++ Markdown-2.6.4.tar.gz -> Markdown-2.6.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Markdown-2.6.4/PKG-INFO new/Markdown-2.6.5/PKG-INFO --- old/Markdown-2.6.4/PKG-INFO 2015-11-06 23:43:43.000000000 +0100 +++ new/Markdown-2.6.5/PKG-INFO 2015-11-25 01:08:48.000000000 +0100 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: Markdown -Version: 2.6.4 +Version: 2.6.5 Summary: Python implementation of Markdown. Home-page: https://pythonhosted.org/Markdown/ Author: Waylan Limberg Author-email: waylan.limberg [at] icloud.com License: BSD License -Download-URL: http://pypi.python.org/packages/source/M/Markdown/Markdown-2.6.4.tar.gz +Download-URL: http://pypi.python.org/packages/source/M/Markdown/Markdown-2.6.5.tar.gz Description: This is a Python implementation of John Gruber's Markdown_. It is almost completely compliant with the reference implementation, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Markdown-2.6.4/markdown/__version__.py new/Markdown-2.6.5/markdown/__version__.py --- old/Markdown-2.6.4/markdown/__version__.py 2015-11-06 23:40:31.000000000 +0100 +++ new/Markdown-2.6.5/markdown/__version__.py 2015-11-25 01:00:04.000000000 +0100 @@ -5,7 +5,7 @@ # (major, minor, micro, alpha/beta/rc/final, #) # (1, 1, 2, 'alpha', 0) => "1.1.2.dev" # (1, 2, 0, 'beta', 2) => "1.2b2" -version_info = (2, 6, 4, 'final', 0) +version_info = (2, 6, 5, 'final', 0) def _get_version(): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Markdown-2.6.4/markdown/extensions/tables.py new/Markdown-2.6.5/markdown/extensions/tables.py --- old/Markdown-2.6.4/markdown/extensions/tables.py 2015-10-27 00:45:57.000000000 +0100 +++ new/Markdown-2.6.5/markdown/extensions/tables.py 2015-11-18 02:02:12.000000000 +0100 @@ -119,7 +119,7 @@ groups = match.groups() delim = groups[1] # the code block delimeter (ie 1 or more backticks) row_contents = groups[2] # the text contained inside the code block - i += match.start(4) # jump pointer to the beginning of the rest of the text (group #4) + i += match.start(4) - 1 # jump pointer to the beginning of the rest of the text (group #4) element = delim + row_contents + delim # reinstert backticks current += element i += 1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Markdown-2.6.4/tests/extensions/extra/tables.html new/Markdown-2.6.5/tests/extensions/extra/tables.html --- old/Markdown-2.6.4/tests/extensions/extra/tables.html 2015-11-06 23:29:30.000000000 +0100 +++ new/Markdown-2.6.5/tests/extensions/extra/tables.html 2015-11-18 02:02:12.000000000 +0100 @@ -235,4 +235,19 @@ <td>more words</td> </tr> </tbody> +</table> +<p>A test for issue #440:</p> +<table> +<thead> +<tr> +<th>foo</th> +<th>bar</th> +</tr> +</thead> +<tbody> +<tr> +<td>foo</td> +<td>(<code>bar</code>) and <code>baz</code>.</td> +</tr> +</tbody> </table> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Markdown-2.6.4/tests/extensions/extra/tables.txt new/Markdown-2.6.5/tests/extensions/extra/tables.txt --- old/Markdown-2.6.4/tests/extensions/extra/tables.txt 2015-10-27 00:45:57.000000000 +0100 +++ new/Markdown-2.6.5/tests/extensions/extra/tables.txt 2015-11-18 02:02:12.000000000 +0100 @@ -68,4 +68,10 @@ words |```` some | code ```` | more words words |`` some ` | ` code `` | more words words |``` some ` | ` code ``` | more words -words |```` some ` | ` code ```` | more words \ No newline at end of file +words |```` some ` | ` code ```` | more words + +A test for issue #440: + +foo | bar +--- | --- +foo | (`bar`) and `baz`. \ No newline at end of file