File tree Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 1
- version : 1.0.2 -{build}
1
+ version : 1.0.3 -{build}
2
2
3
3
build : false
4
4
environment :
Original file line number Diff line number Diff line change @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.0.3] - 2017-05-13
10
+ ### Added
11
+ - Make parser return error message on failure
12
+ - Added support of ` $_ENV ` global var [ #1224 ] ( https://github.com/phalcon/zephir/issues/1224 )
13
+ - Amended tests
14
+
15
+ ### Changed
16
+ - Improved installer: use ` sudo ` only if ` make install ` fails
17
+
18
+ ### Fixed
19
+ - Treat warnings as errors
20
+ - Fix memory leak for PHP5
21
+
9
22
## [ 1.0.2] - 2017-04-14
10
23
### Added
11
24
- Added an ability to use parentheses in for loops [ #3 ] ( https://github.com/phalcon/php-zephir-parser/issues/3 )
@@ -32,6 +45,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
32
45
- Removing unused structures
33
46
- Removing unused variables
34
47
35
- ## [ 1.0.0] - 2017-03-26
48
+ ## 1.0.0 - 2017-03-26
36
49
### Added
37
50
- Initial stable release
51
+
52
+ [ Unreleased ] : https://github.com/phalcon/php-zephir-parser/compare/v1.0.3...HEAD
53
+ [ 1.0.3 ] : https://github.com/phalcon/php-zephir-parser/compare/v1.0.2...v1.0.3
54
+ [ 1.0.2 ] : https://github.com/phalcon/php-zephir-parser/compare/v1.0.1...v1.0.2
55
+ [ 1.0.1 ] : https://github.com/phalcon/php-zephir-parser/compare/v1.0.0...v1.0.1
Original file line number Diff line number Diff line change 1
- 1.0.2
1
+ 1.0.3
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ extern zend_module_entry zephir_parser_module_entry;
24
24
#define phpext_zephir_parser_ptr &zephir_parser_module_entry
25
25
26
26
#define PHP_ZEPHIR_PARSER_NAME "Zephir Parser"
27
- #define PHP_ZEPHIR_PARSER_VERSION "1.0.2 "
27
+ #define PHP_ZEPHIR_PARSER_VERSION "1.0.3 "
28
28
#define PHP_ZEPHIR_PARSER_AUTHOR "Zephir Team and contributors"
29
29
#define PHP_ZEPHIR_PARSER_DESCRIPTION "The Zephir Parser delivered as a C extension for the PHP language."
30
30
You can’t perform that action at this time.
0 commit comments