Skip to content

Commit 96f4d21

Browse files
authored
Merge pull request #142 from zephir-lang/#141-php-82
#141 - Add PHP 8.2 version
2 parents 3bd3b4d + 062c6ea commit 96f4d21

File tree

6 files changed

+19
-13
lines changed

6 files changed

+19
-13
lines changed

.github/workflows/ci.yml

+3-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' ]
31+
php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
3232
ts: [ 'nts' ]
3333
arch: [ 'x64' ]
3434

@@ -51,6 +51,7 @@ jobs:
5151
- { php: '7.4', ts: 'nts', arch: 'x64', name: 'windows2019-vc15', os: 'windows-2019', compiler: 'vc15', ccov: 'OFF' }
5252
- { php: '8.0', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
5353
- { php: '8.1', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
54+
#- { php: '8.2', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
5455

5556
steps:
5657
- uses: actions/checkout@v2
@@ -182,7 +183,7 @@ jobs:
182183
- name: Install PHP
183184
uses: shivammathur/setup-php@v2
184185
with:
185-
php-version: '8.0'
186+
php-version: '8.1'
186187
tools: pecl
187188

188189
- name: Install System Dependencies

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
## [Unreleased] - xxxx-xx-xx
88

99

10+
## [1.5.1] - 2022-09-19
11+
### Added
12+
- Enabled support of PHP8.2 for PECL [#141](https://github.com/phalcon/php-zephir-parser/issues/141)
13+
1014
## [1.5.0] - 2022-02-12
1115
### Added
1216
- 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/).
186190
### Added
187191
- Initial stable release
188192

189-
[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.0...HEAD
193+
[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.1...HEAD
194+
[1.5.1]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.0...v1.5.1
190195
[1.5.0]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.2...v1.5.0
191196
[1.4.2]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.1...v1.4.2
192197
[1.4.1]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.0...v1.4.1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
The Zephir Parser delivered as a C extension for the PHP language.
99

10-
Supported PHP versions: **7.0**, **7.1**, **7.2**, **7.3**, **7.4**, **8.0** and **8.1**
10+
Supported PHP versions: **7.0**, **7.1**, **7.2**, **7.3**, **7.4**, **8.0**, **8.1** and **8.2**
1111

1212
**NOTE:** The [`development`][:dev-branch:]
1313
branch will always contain the latest **unstable** version. If you wish to

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.0
1+
1.5.1

package.xml

+7-7
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>2022-02-12</date>
16-
<time>15:00:00</time>
15+
<date>2022-09-19</date>
16+
<time>12:00:00</time>
1717
<version>
18-
<release>1.5.0</release>
19-
<api>1.5.0</api>
18+
<release>1.5.1</release>
19+
<api>1.5.1</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-
Sat, Feb 12, 2022 - Zephir Parser 1.5.0
27+
Mon, Sep 19, 2022 - Zephir Parser 1.5.1
2828

2929
= Added:
3030

31-
- Added support of `false` return type
31+
- Enabled support of PHP8.2 for PECL
3232
</notes>
3333
<contents>
3434
<dir name="/">
@@ -215,7 +215,7 @@
215215
<required>
216216
<php>
217217
<min>7.0.0</min>
218-
<max>8.1.99</max>
218+
<max>8.2.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.5.0"
18+
#define PHP_ZEPHIR_PARSER_VERSION "1.5.1"
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)