diff --git a/PHP Markdown Readme.text b/PHP Markdown Readme.text index 3759e6d..405e46f 100644 --- a/PHP Markdown Readme.text +++ b/PHP Markdown Readme.text @@ -1,7 +1,7 @@ PHP Markdown ============ -Version 1.0.1p - Sun 13 Jan 2013 +Version 1.0.1p - 11 Apr 2013 by Michel Fortin @@ -191,6 +191,13 @@ See Installation and Requirement above for details. Version History --------------- +1.0.1q (11 Apr 2013): + +* Fixed a small mistake that could cause the parser to retain an invalid + state related to parsing links across multiple runs. This was never + observed (that I know of), but it's still worth fixing. + + 1.0.1p (13 Jan 2013): * Fixed an issue where some XML-style empty tags (such as `
`) were not diff --git a/markdown.php b/markdown.php index 070a6ac..17e5152 100644 --- a/markdown.php +++ b/markdown.php @@ -12,7 +12,7 @@ # -define( 'MARKDOWN_VERSION', "1.0.1p" ); # Sun 13 Jan 2013 +define( 'MARKDOWN_VERSION', "1.0.1q" ); # 11 Apr 2013 # @@ -62,7 +62,7 @@ function Markdown($text) { Plugin Name: Markdown Plugin URI: http://michelf.ca/projects/php-markdown/ Description: Markdown syntax allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by John Gruber. More... -Version: 1.0.1p +Version: 1.0.1q Author: Michel Fortin Author URI: http://michelf.ca/ */