diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c8c4a7..040d0c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## Version 0.* -* v0.6.0 (XX.YY.2016) +* v0.6.2 (25.04.2016) + + * fixed issue with parsing shortcode tokens inside shortcode content. + +* v0.6.1 (25.02.2016) + + * fixed bug with not recalculating new text length after applying shortcode replacement which caused the replacements to be applied only up to the length of source text. + +* v0.6.0 (13.02.2016) * README was completely rewritten to take into account newest additions, * introduced `FilterShortcodesEvent` for modifying set of parsed shortcodes before processing them, diff --git a/README.md b/README.md index 78eda18..83835c5 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Each part is described in the dedicated section in this document. There are no required dependencies and all PHP versions from 5.3 up to latest 7.0 [are tested](https://travis-ci.org/thunderer/Shortcode) and supported. This library is available on Composer/Packagist as `thunderer/shortcode`, to install it execute: ``` -composer require thunderer/shortcode ^0.5 +composer require thunderer/shortcode ^0.6 ``` or manually update your `composer.json` with: @@ -44,7 +44,7 @@ or manually update your `composer.json` with: ``` (...) "require": { - "thunderer/shortcode": "^0.5" + "thunderer/shortcode": "^0.6" } (...) ```