From 2b96ab8edccd5a0d0e7a826a7dc53c421ae64f94 Mon Sep 17 00:00:00 2001 From: nikic Date: Fri, 12 Sep 2014 14:48:23 +0200 Subject: [PATCH] Release PHP-Parser 1.0.0 --- CHANGELOG.md | 7 ++++++- README.md | 2 +- doc/1_Installation.markdown | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd507284..1aa6b9e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index cf0b95a3..12723904 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/doc/1_Installation.markdown b/doc/1_Installation.markdown index 8ffdf1d1..13e9c772 100644 --- a/doc/1_Installation.markdown +++ b/doc/1_Installation.markdown @@ -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" } }