diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b83fb228..f9d32727 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,10 +51,10 @@ jobs: - { php: '7.4', ts: 'nts', arch: 'x64', name: 'windows2019-vc15', os: 'windows-2019', compiler: 'vc15', ccov: 'OFF' } - { php: '8.0', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' } - { php: '8.1', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' } - #- { php: '8.2', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' } + - { php: '8.2', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' } steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install PHP ${{ matrix.php }} uses: shivammathur/setup-php@v2 @@ -178,12 +178,12 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.2' tools: pecl - name: Install System Dependencies @@ -248,7 +248,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3361e976..a9475e95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - xxxx-xx-xx +## [1.5.2] - 2022-12-27 +### Added +- Enabled support of PHP8.2 for Windows [#141](https://github.com/phalcon/php-zephir-parser/issues/141) ## [1.5.1] - 2022-09-19 ### Added @@ -190,7 +193,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.5.1...HEAD +[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.2...HEAD +[1.5.2]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.1...v1.5.2 [1.5.1]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.0...v1.5.1 [1.5.0]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.2...v1.5.0 [1.4.2]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.1...v1.4.2 diff --git a/VERSION b/VERSION index 26ca5946..4cda8f19 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.1 +1.5.2 diff --git a/package.xml b/package.xml index 202fa0f3..34027211 100644 --- a/package.xml +++ b/package.xml @@ -12,11 +12,11 @@ anton@phalcon.io yes - 2022-09-19 - + 2022-12-27 + - 1.5.1 - 1.5.1 + 1.5.2 + 1.5.2 stable @@ -24,11 +24,11 @@ MIT - Mon, Sep 19, 2022 - Zephir Parser 1.5.1 + Mon, Dec 27, 2022 - Zephir Parser 1.5.2 = Added: - - Enabled support of PHP8.2 for PECL + - Enabled support of PHP8.2 for Windows diff --git a/zephir_parser.h b/zephir_parser.h index 6e5d1f6f..74f29739 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.5.1" +#define PHP_ZEPHIR_PARSER_VERSION "1.5.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."