1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-30 04:19:30 +01:00

Release PHP-Parser 1.0.0

This commit is contained in:
nikic 2014-09-12 14:48:23 +02:00
parent 7503356e03
commit 2b96ab8edc
3 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,11 @@
Version 1.0.0-dev
Version 1.0.1-dev
-----------------
Nothing yet.
Version 1.0.0 (12.09.2014)
--------------------------
* [BC] Removed deprecated `Template` and `TemplateLoader` classes.
* Fixed XML unserializer to properly work with new namespaced node names.

View File

@ -4,7 +4,7 @@ PHP Parser
This is a PHP 5.2 to PHP 5.6 parser written in PHP. It's purpose is to simplify static code analysis and
manipulation.
[**Documentation for version 1.0.x**][doc_master] (beta; for running on PHP >= 5.3).
[**Documentation for version 1.0.x**][doc_master] (stable; for running on PHP >= 5.3).
[Documentation for version 0.9.x][doc_0_9] (unsupported; for running on PHP 5.2).

View File

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