Skip to content

Commit 475ce65

Browse files
committed
Bump version
1 parent dbff8ef commit 475ce65

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.0.2-{build}
1+
version: 1.0.3-{build}
22

33
build: false
44
environment:

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

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+
922
## [1.0.2] - 2017-04-14
1023
### Added
1124
- 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/).
3245
- Removing unused structures
3346
- Removing unused variables
3447

35-
## [1.0.0] - 2017-03-26
48+
## 1.0.0 - 2017-03-26
3649
### Added
3750
- 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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.2
1+
1.0.3

php_zephir_parser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ extern zend_module_entry zephir_parser_module_entry;
2424
#define phpext_zephir_parser_ptr &zephir_parser_module_entry
2525

2626
#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"
2828
#define PHP_ZEPHIR_PARSER_AUTHOR "Zephir Team and contributors"
2929
#define PHP_ZEPHIR_PARSER_DESCRIPTION "The Zephir Parser delivered as a C extension for the PHP language."
3030

0 commit comments

Comments
 (0)