Skip to content

Commit 9a2f26f

Browse files
committed
Initial CHANGELOG.md [ci skip]
1 parent b56113a commit 9a2f26f

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
5+
and this project adheres to [Semantic Versioning](http://semver.org/).
6+
7+
## [Unreleased]
8+
9+
## 1.1.0 - 2017-03-22
10+
### Added
11+
- Initial stable release

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Zephir Parser
22

3-
[![Build Status](https://travis-ci.org/phalcon/php-zephir-parser.svg?branch=master)](https://travis-ci.org/phalcon/php-zephir-parser)
4-
[![Build status](https://ci.appveyor.com/api/projects/status/r4k8baw1iy54v2wt?svg=true)](https://ci.appveyor.com/project/sergeyklay/php-zephir-parser)
3+
[![Build on Linux](https://travis-ci.org/phalcon/php-zephir-parser.svg?branch=master)](https://travis-ci.org/phalcon/php-zephir-parser)
4+
[![Build on Windows](https://ci.appveyor.com/api/projects/status/r4k8baw1iy54v2wt/branch/master?svg=true)](https://ci.appveyor.com/project/sergeyklay/php-zephir-parser/branch/master)
55

66
The Zephir Parser delivered as a C extension for the PHP language.
77

@@ -24,7 +24,8 @@ On a Unix-based platform you can easily compile and install the extension from s
2424

2525
Prerequisite packages are:
2626

27-
* GCC/Clang compiler (Linux/Solaris/FreeBSD) or Xcode (MacOS)
27+
* OS: Linux | Solaris | FreeBSD | macOS | Windows
28+
* Compiller: g++ >= 4.4 | clang++ >= 3.x | vc++ 9
2829
* [`re2c`](http://re2c.org/) >= 0.13
2930

3031
#### Ubuntu

parser/base.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,6 @@ void xx_parse_program(zval *return_value, char *program, size_t program_length,
509509
case XX_T_CONSTANT:
510510
xx_parse_with_token(xx_parser, XX_T_CONSTANT, XX_CONSTANT, &token, parser_status);
511511
break;
512-
513512
case XX_T_VOID:
514513
xx_(xx_parser, XX_VOID, NULL, parser_status);
515514
break;

parser/parser.php5.lemon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
/**
19-
* Zephir parser
19+
* Zephir Parser
2020
*
2121
* This parser is intended to produce a better and safe code generation
2222
* rather than full expresiveness

parser/parser.php7.lemon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
/**
19-
* Zephir parser
19+
* Zephir Parser
2020
*
2121
* This parser is intended to produce a better and safe code generation
2222
* rather than full expresiveness

0 commit comments

Comments
 (0)