diff --git a/CHANGES.rst b/CHANGES.rst index 13db90d..5bfda80 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,16 @@ Changelog Here is the full history of mistune. +Version 0.8.3 +~~~~~~~~~~~~~ + +Relased on Dec. 04, 2017 + +* Fix nested html issue. `#137`_ + +.. _`#137`: https://github.com/lepture/mistune/pull/137 + + Version 0.8.2 ~~~~~~~~~~~~~ diff --git a/mistune.py b/mistune.py index 489b729..19faa62 100644 --- a/mistune.py +++ b/mistune.py @@ -11,7 +11,7 @@ import re import inspect -__version__ = '0.8.2' +__version__ = '0.8.3' __author__ = 'Hsiaoming Yang ' __all__ = [ 'BlockGrammar', 'BlockLexer',