Bumped version number to 1.7.0.

This commit is contained in:
Michel Fortin 2016-10-29 14:58:20 -04:00
parent 05747a4749
commit 1f51cc5209
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ class Markdown implements MarkdownInterface {
* Define the package version
* @var string
*/
const MARKDOWNLIB_VERSION = "1.6.0";
const MARKDOWNLIB_VERSION = "1.7.0";
/**
* Simple function interface - Initialize the parser and return the result

View file

@ -1,7 +1,7 @@
PHP Markdown
============
PHP Markdown Lib 1.6.0 - 23 Dec 2015
PHP Markdown Lib 1.7.0 - 29 Oct 2016
by Michel Fortin
<https://michelf.ca/>
@ -174,7 +174,7 @@ PHP Markdown, please visit [michelf.ca/donate] or send Bitcoin to
Version History
---------------
Current Version:
PHP Markdown Lib 1.7.0 (29 Oct 2016)
* Added a `hard_wrap` configuration variable to make all newline characters
in the text become `<br>` tags in the HTML output. By default, according