From 5310b49f3ba1e2687fbe7325283edf3ba9c7b15b Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Mon, 30 Sep 2019 22:39:57 +0300 Subject: [PATCH] Bump version --- .appveyor.yml | 2 +- CHANGELOG.md | 13 ++++++++++++- zephir_parser.h | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 49fb8100..a03eaaf5 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: 1.3.1-{build} +version: 1.3.2-{build} environment: matrix: diff --git a/CHANGELOG.md b/CHANGELOG.md index 9981b45f..707a13b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [1.3.2] - 2019-09-30 +### Changed +- Files `parser.c` and `scanner.c` no longer distributed. + Package maintainer should re-generate they by himself. + [#75](https://github.com/phalcon/php-zephir-parser/pull/75) + ### Fixed +- Fixed `return_value` and `this_ptr` naming collision + [phalcon/zephir#1660](https://github.com/phalcon/zephir/issues/1660) - Fixed underscore only identifiers to allow more than 4 characters + [#75](https://github.com/phalcon/php-zephir-parser/pull/75) - Update LDFLAGS to reduce linker warnings +- Fixed PHP 7.4 support ## [1.3.1] - 2019-05-01 ### Fixed @@ -132,7 +142,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added - Initial stable release -[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.1...HEAD +[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.2...HEAD +[1.3.2]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.1...v1.3.2 [1.3.1]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.0...v1.3.1 [1.3.0]: https://github.com/phalcon/php-zephir-parser/compare/v1.2.0...v1.3.0 [1.2.0]: https://github.com/phalcon/php-zephir-parser/compare/v1.1.4...v1.2.0 diff --git a/zephir_parser.h b/zephir_parser.h index 7f470ac0..541b2b0d 100644 --- a/zephir_parser.h +++ b/zephir_parser.h @@ -15,7 +15,7 @@ extern zend_module_entry zephir_parser_module_entry; #define phpext_zephir_parser_ptr &zephir_parser_module_entry #define PHP_ZEPHIR_PARSER_NAME "Zephir Parser" -#define PHP_ZEPHIR_PARSER_VERSION "1.3.1" +#define PHP_ZEPHIR_PARSER_VERSION "1.3.2" #define PHP_ZEPHIR_PARSER_AUTHOR "Zephir Team and contributors" #define PHP_ZEPHIR_PARSER_DESCRIPTION "The Zephir Parser delivered as a C extension for the PHP language."