Bumped version number to 1.0.1q and added some version history.
This commit is contained in:
parent
1d33f217f8
commit
91e8734e79
2 changed files with 10 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
|||
PHP Markdown
|
||||
============
|
||||
|
||||
Version 1.0.1p - Sun 13 Jan 2013
|
||||
Version 1.0.1p - 11 Apr 2013
|
||||
|
||||
by Michel Fortin
|
||||
<http://michelf.ca/>
|
||||
|
|
@ -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 `<br/>`) were not
|
||||
|
|
|
|||
|
|
@ -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: <a href="http://daringfireball.net/projects/markdown/syntax">Markdown syntax</a> allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by <a href="http://daringfireball.net/">John Gruber</a>. <a href="http://michelf.ca/projects/php-markdown/">More...</a>
|
||||
Version: 1.0.1p
|
||||
Version: 1.0.1q
|
||||
Author: Michel Fortin
|
||||
Author URI: http://michelf.ca/
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue