diff --git a/.appveyor.yml b/.appveyor.yml index 2075ac23..6237f8d9 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: 1.3.5-{build} +version: 1.3.6-{build} environment: matrix: @@ -99,7 +99,6 @@ branches: only: - master - development - - windows-builds-php8 init: - ps: $DebugPreference = 'SilentlyContinue' # Continue diff --git a/CHANGELOG.md b/CHANGELOG.md index 427f8c5a..579578dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [1.3.6] - 2020-12-03 +### Added +- Added ability to build extensions with Visual Studio 2019 for PHP 8.x + ## [1.3.5] - 2020-11-29 ### Added - Added PHP 8.0 support [phalcon/zephir#2111](https://github.com/phalcon/zephir/issues/2111) @@ -156,8 +160,10 @@ 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.5...HEAD +[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.6...HEAD +[1.3.6]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.5...v1.3.6 [1.3.5]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.4...v1.3.5 +[1.3.4]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.3...v1.3.4 [1.3.3]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.2...v1.3.3 [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 diff --git a/VERSION b/VERSION index 80e78df6..95b25aee 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.5 +1.3.6 diff --git a/zephir_parser.h b/zephir_parser.h index a892401c..7a805cbe 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.5" +#define PHP_ZEPHIR_PARSER_VERSION "1.3.6" #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."