diff --git a/CHANGES.md b/CHANGES.md index 06cd3bf9..d96b3693 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # python-markdown2 Changelog +## python-markdown2 2.4.14 (not yet released) + +(nothing yet) + + ## python-markdown2 2.4.13 - [pull #559] Allow cuddled tables (#557) diff --git a/lib/markdown2.py b/lib/markdown2.py index 4d000984..4159878a 100755 --- a/lib/markdown2.py +++ b/lib/markdown2.py @@ -106,7 +106,7 @@ # not yet sure if there implications with this. Compare 'pydoc sre' # and 'perldoc perlre'. -__version_info__ = (2, 4, 13) +__version_info__ = (2, 4, 14) __version__ = '.'.join(map(str, __version_info__)) __author__ = "Trent Mick"