diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7cfeb8ca..b83fb228 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
+ php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
ts: [ 'nts' ]
arch: [ 'x64' ]
@@ -51,6 +51,7 @@ 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' }
steps:
- uses: actions/checkout@v2
@@ -182,7 +183,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
- php-version: '8.0'
+ php-version: '8.1'
tools: pecl
- name: Install System Dependencies
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 15bb8b46..3361e976 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] - xxxx-xx-xx
+## [1.5.1] - 2022-09-19
+### Added
+- Enabled support of PHP8.2 for PECL [#141](https://github.com/phalcon/php-zephir-parser/issues/141)
+
## [1.5.0] - 2022-02-12
### Added
- Added support for `false` return type [#137](https://github.com/phalcon/php-zephir-parser/issues/137)
@@ -186,7 +190,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.0...HEAD
+[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.1...HEAD
+[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
[1.4.1]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.0...v1.4.1
diff --git a/README.md b/README.md
index d8108ba9..1c11696c 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
The Zephir Parser delivered as a C extension for the PHP language.
-Supported PHP versions: **7.0**, **7.1**, **7.2**, **7.3**, **7.4**, **8.0** and **8.1**
+Supported PHP versions: **7.0**, **7.1**, **7.2**, **7.3**, **7.4**, **8.0**, **8.1** and **8.2**
**NOTE:** The [`development`][:dev-branch:]
branch will always contain the latest **unstable** version. If you wish to
diff --git a/VERSION b/VERSION
index bc80560f..26ca5946 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.5.0
+1.5.1
diff --git a/package.xml b/package.xml
index 0b46e392..202fa0f3 100644
--- a/package.xml
+++ b/package.xml
@@ -12,11 +12,11 @@
anton@phalcon.io
yes
- 2022-02-12
-
+ 2022-09-19
+
- 1.5.0
- 1.5.0
+ 1.5.1
+ 1.5.1
stable
@@ -24,11 +24,11 @@
MIT
- Sat, Feb 12, 2022 - Zephir Parser 1.5.0
+ Mon, Sep 19, 2022 - Zephir Parser 1.5.1
= Added:
- - Added support of `false` return type
+ - Enabled support of PHP8.2 for PECL
@@ -215,7 +215,7 @@
7.0.0
- 8.1.99
+ 8.2.99
1.10
diff --git a/zephir_parser.h b/zephir_parser.h
index cc8c328a..6e5d1f6f 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.0"
+#define PHP_ZEPHIR_PARSER_VERSION "1.5.1"
#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."