Skip to content

Commit

Permalink
Release PHP-Parser 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Aug 25, 2013
1 parent 3d467ca commit 1e5e280
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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)
--------------------------

Expand Down
4 changes: 2 additions & 2 deletions doc/1_Installation.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

Expand All @@ -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
-----------------------------
Expand Down

0 comments on commit 1e5e280

Please sign in to comment.