Version bump 0.8.4

This commit is contained in:
Hsiaoming Yang 2018-10-11 15:58:49 +09:00
parent eeb8a9791e
commit 6470c42b20
No known key found for this signature in database
GPG Key ID: 7E55E3E0118B2B4C
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ Here is the full history of mistune.
Version 0.8.4
~~~~~~~~~~~~~
Not released.
Released on Oct. 11, 2018
* Support an escaped pipe char in a table cell. `#150`_
* Fix ordered and unordered list. `#152`_

View File

@ -5,13 +5,13 @@
The fastest markdown parser in pure Python with renderer feature.
:copyright: (c) 2014 - 2017 by Hsiaoming Yang.
:copyright: (c) 2014 - 2018 by Hsiaoming Yang.
"""
import re
import inspect
__version__ = '0.8.3'
__version__ = '0.8.4'
__author__ = 'Hsiaoming Yang <me@lepture.com>'
__all__ = [
'BlockGrammar', 'BlockLexer',