Skip to content

Commit 7da0962

Browse files
authored
Merge pull request #156 from zephir-lang/development
1.7.0
2 parents 3e92337 + ac23688 commit 7da0962

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
31+
php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
3232
ts: [ 'ts', 'nts' ]
3333
arch: [ 'x64' ]
3434

@@ -62,6 +62,8 @@ jobs:
6262
- { php: '8.2', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
6363
- { php: '8.3', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
6464
- { php: '8.3', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
65+
#- { php: '8.4', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
66+
#- { php: '8.4', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
6567

6668
steps:
6769
- uses: actions/checkout@v4
@@ -193,7 +195,7 @@ jobs:
193195
- name: Install PHP
194196
uses: shivammathur/setup-php@v2
195197
with:
196-
php-version: '8.3'
198+
php-version: '8.4'
197199
tools: pecl
198200

199201
- name: Install System Dependencies

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased] - xxxx-xx-xx
88

9+
## [1.7.0] - 2024-11-23
10+
### Added
11+
- Enabled PHP 8.4 support [#154](https://github.com/phalcon/php-zephir-parser/issues/154)
12+
913
## [1.6.1] - 2024-06-03
1014
### Fixed
1115
- Fix lcov coverage [#151](https://github.com/phalcon/php-zephir-parser/issues/151)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.1
1+
1.7.0

package.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@
1212
<email>[email protected]</email>
1313
<active>yes</active>
1414
</lead>
15-
<date>2024-06-03</date>
16-
<time>21:00:00</time>
15+
<date>2024-11-23</date>
16+
<time>10:00:00</time>
1717
<version>
18-
<release>1.6.1</release>
19-
<api>1.6.1</api>
18+
<release>1.7.0</release>
19+
<api>1.7.0</api>
2020
</version>
2121
<stability>
2222
<release>stable</release>
2323
<api>stable</api>
2424
</stability>
2525
<license uri="https://github.com/zephir-lang/php-zephir-parser/blob/development/LICENSE">MIT</license>
2626
<notes>
27-
Mon, Jun 03, 2024 - Zephir Parser 1.6.1
27+
Sat, Nov 23, 2024 - Zephir Parser 1.7.0
2828

29-
= Fixed:
29+
= Added:
3030

31-
- Fixed lcov coverage
31+
- Enabled support for PHP 8.4
3232
</notes>
3333
<contents>
3434
<dir name="/">
@@ -215,7 +215,7 @@
215215
<required>
216216
<php>
217217
<min>7.0.0</min>
218-
<max>8.3.99</max>
218+
<max>8.4.99</max>
219219
</php>
220220
<pearinstaller>
221221
<min>1.10</min>

zephir_parser.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ extern zend_module_entry zephir_parser_module_entry;
1515
#define phpext_zephir_parser_ptr &zephir_parser_module_entry
1616

1717
#define PHP_ZEPHIR_PARSER_NAME "zephir_parser"
18-
#define PHP_ZEPHIR_PARSER_VERSION "1.6.1"
18+
#define PHP_ZEPHIR_PARSER_VERSION "1.7.0"
1919
#define PHP_ZEPHIR_PARSER_AUTHOR "Zephir Team and contributors"
2020
#define PHP_ZEPHIR_PARSER_DESCRIPTION "The Zephir Parser delivered as a C extension for the PHP language."
2121

0 commit comments

Comments
 (0)