Skip to content

Commit 2258d03

Browse files
committed
Bump version
1 parent 0339ec2 commit 2258d03

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-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.2.0-{build}
1+
version: 1.3.0-{build}
22

33
environment:
44
matrix:

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
8+
## [1.3.0] - 2019-04-27
89
### Added
910
- Added support for "use" keyword in closures
1011
[phalcon/zephir#1848]https://github.com/phalcon/zephir/issues/1848
@@ -14,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1415
- Fixed unicode support in the source code
1516
[#62](https://github.com/phalcon/php-zephir-parser/issues/62),
1617
[#56](https://github.com/phalcon/php-zephir-parser/issues/56)
18+
- Fixed memory leaks on processing errors
1719

1820
## [1.2.0] - 2019-01-14
1921
### Added
@@ -122,7 +124,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
122124
### Added
123125
- Initial stable release
124126

125-
[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.2.0...HEAD
127+
[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.0...HEAD
128+
[1.3.0]: https://github.com/phalcon/php-zephir-parser/compare/v1.2.0...v1.3.0
126129
[1.2.0]: https://github.com/phalcon/php-zephir-parser/compare/v1.1.4...v1.2.0
127130
[1.1.4]: https://github.com/phalcon/php-zephir-parser/compare/v1.1.3...v1.1.4
128131
[1.1.3]: https://github.com/phalcon/php-zephir-parser/compare/v1.1.2...v1.1.3

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.0
1+
1.3.0

zephir_parser.h

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

1717
#define PHP_ZEPHIR_PARSER_NAME "Zephir Parser"
18-
#define PHP_ZEPHIR_PARSER_VERSION "1.2.0"
18+
#define PHP_ZEPHIR_PARSER_VERSION "1.3.0"
1919
#define PHP_ZEPHIR_PARSER_AUTHOR "Zephir Team and contributors"
2020
#define PHP_ZEPHIR_PARSER_DESCRIPTION "The Zephir Parser delivered as a C extension for the PHP language."
2121

0 commit comments

Comments
 (0)