Skip to content

Commit

Permalink
release 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ichiriac committed Dec 12, 2016
1 parent f785583 commit be997f7
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 14 deletions.
14 changes: 1 addition & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -84,18 +84,6 @@ Usage: test [options] [-f] <file>

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.
20 changes: 20 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "php-parser",
"version": "0.1.3",
"version": "0.1.4",
"description": "PHP parser",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit be997f7

Please sign in to comment.