diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cf8964..55b7aa4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ -Version 0.9.4-dev +Version 0.9.5-dev ----------------- +Nothing yet. + +Version 0.9.4 (25.08.2013) +-------------------------- * [PHP 5.5] Add support for `ClassName::class`. This is parsed as an `Expr_ClassConstFetch` with `'class'` being the constant name. @@ -29,6 +33,8 @@ Version 0.9.4-dev * Fix "undefined index" notices when generating the expected tokens for a syntax error. +* Improve performance of `PrettyPrinter` construction by no longer using the `uniqid()` function. + Version 0.9.3 (22.11.2012) -------------------------- diff --git a/doc/1_Installation.markdown b/doc/1_Installation.markdown index 9d5fc23..f53033e 100644 --- a/doc/1_Installation.markdown +++ b/doc/1_Installation.markdown @@ -15,7 +15,7 @@ Create a `composer.json` file in your project root and use it to define your dep { "require": { - "nikic/php-parser": "0.9.3" + "nikic/php-parser": "0.9.4" } } @@ -33,7 +33,7 @@ Installing as a PEAR package Run the following two commands: pear channel-discover nikic.github.com/pear - pear install channel://nikic.github.com/pear/PHPParser-0.9.3 + pear install nikic/PHPParser-0.9.4 Installing as a Git Submodule -----------------------------