diff --git a/Michelf/Markdown.php b/Michelf/Markdown.php index 6d00ea1..088b7cd 100644 --- a/Michelf/Markdown.php +++ b/Michelf/Markdown.php @@ -21,7 +21,7 @@ class Markdown implements MarkdownInterface { ### Version ### - const MARKDOWNLIB_VERSION = "1.3"; + const MARKDOWNLIB_VERSION = "1.4.0"; ### Simple Function Interface ### diff --git a/Readme.md b/Readme.md index c21dbcb..eb48621 100644 --- a/Readme.md +++ b/Readme.md @@ -1,7 +1,7 @@ PHP Markdown ============ -PHP Markdown Lib 1.3 - 11 Apr 2013 +PHP Markdown Lib 1.4.0 - 29 Nov 2013 by Michel Fortin @@ -162,20 +162,30 @@ too. Version History --------------- -Current Version: - -* Added backtick fenced code blocks, originally from Github-flavored Markdown. +PHP Markdown Lib 1.4.0 (29 Nov 2013) * Added support for the `tel:` URL scheme in automatic links. - is converted to: + It gets converted to this (note the `tel:` prefix becomes invisible): +1-111-111-1111 +* Added backtick fenced code blocks to MarkdownExtra, originally from + Github-Flavored Markdown. -PHP Markdown Lib 1.3 (11 Apr 2013): +* Added an interface called MarkdownInterface interface implemented by both + the Markdown and MarkdownExtra parsers. You can use the interface if + you want to create a mockup parser object for unit testing. + +* For those of you who cannot use class autoloading, you can now + include `Michelf/Markdown.inc.php` or `Michelf/MarkdownExtra.inc.php` (note + the `.inc.php` extension) to automatically include other files required + by the parser. + + +PHP Markdown Lib 1.3 (11 Apr 2013) This is the first release of PHP Markdown Lib. This package requires PHP version 5.3 or later and is designed to work with PSR-0 autoloading and, diff --git a/composer.json b/composer.json index 86d749b..45abc67 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ }, "extra": { "branch-alias": { - "dev-lib": "1.3.x-dev" + "dev-lib": "1.4.x-dev" } } }