diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index aa7dc91f..ef12f040 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', '8.2', '8.3' ]
+ php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
ts: [ 'ts', 'nts' ]
arch: [ 'x64' ]
@@ -62,6 +62,8 @@ jobs:
- { php: '8.2', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
- { php: '8.3', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
- { php: '8.3', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
+ #- { php: '8.4', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
+ #- { php: '8.4', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
steps:
- uses: actions/checkout@v4
@@ -193,7 +195,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
- php-version: '8.3'
+ php-version: '8.4'
tools: pecl
- name: Install System Dependencies
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 399163d6..a9957605 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] - xxxx-xx-xx
+## [1.7.0] - 2024-11-23
+### Added
+- Enabled PHP 8.4 support [#154](https://github.com/phalcon/php-zephir-parser/issues/154)
+
## [1.6.1] - 2024-06-03
### Fixed
- Fix lcov coverage [#151](https://github.com/phalcon/php-zephir-parser/issues/151)
diff --git a/VERSION b/VERSION
index 9c6d6293..bd8bf882 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.6.1
+1.7.0
diff --git a/package.xml b/package.xml
index b03afd01..84f29659 100644
--- a/package.xml
+++ b/package.xml
@@ -12,11 +12,11 @@
anton@phalcon.io
yes
- 2024-06-03
-
+ 2024-11-23
+
- 1.6.1
- 1.6.1
+ 1.7.0
+ 1.7.0
stable
@@ -24,11 +24,11 @@
MIT
- Mon, Jun 03, 2024 - Zephir Parser 1.6.1
+ Sat, Nov 23, 2024 - Zephir Parser 1.7.0
- = Fixed:
+ = Added:
- - Fixed lcov coverage
+ - Enabled support for PHP 8.4
@@ -215,7 +215,7 @@
7.0.0
- 8.3.99
+ 8.4.99
1.10
diff --git a/zephir_parser.h b/zephir_parser.h
index abe6ce7b..7b265c56 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.6.1"
+#define PHP_ZEPHIR_PARSER_VERSION "1.7.0"
#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."