1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-20 12:46:47 +01:00

Release PHP-Parser 1.0.2

This commit is contained in:
nikic 2014-11-04 23:12:35 +01:00
parent 7fbdb79a08
commit a8ffc6fcfc
2 changed files with 10 additions and 3 deletions

View File

@ -1,8 +1,15 @@
Version 1.0.2-dev Version 1.0.3-dev
----------------- -----------------
Nothing yet. Nothing yet.
Version 1.0.2 (04.11.2014)
--------------------------
* The `NameResolver` visitor now also resolves names in trait adaptations (aliases and precedence declarations).
* Remove stray whitespace when pretty-printing trait adaptations that only change visibility.
Version 1.0.1 (14.10.2014) Version 1.0.1 (14.10.2014)
-------------------------- --------------------------
@ -105,4 +112,4 @@ Version 1.0.0-beta1 (27.03.2014)
**This changelog only includes changes from the 1.0 series. For older changes see the [0.9 series changelog][1].** **This changelog only includes changes from the 1.0 series. For older changes see the [0.9 series changelog][1].**
[1]: https://github.com/nikic/PHP-Parser/blob/0.9/CHANGELOG.md [1]: https://github.com/nikic/PHP-Parser/blob/0.9/CHANGELOG.md

View File

@ -10,7 +10,7 @@ Create a `composer.json` file in your project root and use it to define your dep
{ {
"require": { "require": {
"nikic/php-parser": "~1.0.1" "nikic/php-parser": "~1.0.2"
} }
} }