From be997f7d56228fc3a8e28ee8f5c45d97561a482e Mon Sep 17 00:00:00 2001 From: Ioan CHIRIAC Date: Mon, 12 Dec 2016 01:49:40 +0100 Subject: [PATCH] release 0.1.4 --- README.md | 14 +------------- RELEASE.md | 20 ++++++++++++++++++++ package.json | 2 +- 3 files changed, 22 insertions(+), 14 deletions(-) create mode 100644 RELEASE.md diff --git a/README.md b/README.md index e39a11663..70e7debbf 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Parse PHP code from NodeJS and convert it to AST. This library is a standalone m [![Build Status](https://travis-ci.org/glayzzle/php-parser.svg)](https://travis-ci.org/glayzzle/php-parser) [![Coverage Status](https://img.shields.io/coveralls/glayzzle/php-parser.svg)](https://coveralls.io/r/glayzzle/php-parser) [![Gitter](https://img.shields.io/badge/GITTER-join%20chat-green.svg)](https://gitter.im/glayzzle/Lobby) - + # Install it @@ -84,18 +84,6 @@ Usage: test [options] [-f] If you run into problems with a test, run it with the cli and add the `--debug` flag. -# Releases - - -* 0.1.3 : add comments nodes, add a browser version and improved parser stability -* 0.1.0 : major release, rewriting of the lexer and many bug fixes -* 0.0.10 : bugfixes and php7 implementation -* 0.0.9 : const (value as expr) bugfix -* 0.0.8 : all tokens are passed on ZF2 (many fixes) -* 0.0.7 : isset, unset, try, catch, finally, fix T_STATIC, fix T_NEW with a dynamic var name, improve tests -* 0.0.6 : Improve tests, implements arrays & new statements -* 0.0.5 : Implement traits - # Misc This library is released under BSD-3 license clause. diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 000000000..43cb13898 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,20 @@ +# Releases + +## 0.1.4 : (2016-12-12) + +- Move from static instances to instanciated objects in order to fully handle +promises +- Fix the silentLexer +- Fix the debug output mode +- Add positions on `expr->set` + +## Older releases + +* 0.1.3 : add comments nodes, add a browser version and improved parser stability +* 0.1.0 : major release, rewriting of the lexer and many bug fixes +* 0.0.10 : bugfixes and php7 implementation +* 0.0.9 : const (value as expr) bugfix +* 0.0.8 : all tokens are passed on ZF2 (many fixes) +* 0.0.7 : isset, unset, try, catch, finally, fix T_STATIC, fix T_NEW with a dynamic var name, improve tests +* 0.0.6 : Improve tests, implements arrays & new statements +* 0.0.5 : Implement traits diff --git a/package.json b/package.json index e66b0391b..7bcb83962 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "php-parser", - "version": "0.1.3", + "version": "0.1.4", "description": "PHP parser", "main": "main.js", "scripts": {