Skip to content

Commit 5431c3d

Browse files
authored
Merge pull request #144 from zephir-lang/development
1.5.2
2 parents bb5df17 + 990d6ec commit 5431c3d

File tree

5 files changed

+18
-14
lines changed

5 files changed

+18
-14
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ 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' }
54+
- { php: '8.2', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16', ccov: 'OFF' }
5555

5656
steps:
57-
- uses: actions/checkout@v2
57+
- uses: actions/checkout@v3
5858

5959
- name: Install PHP ${{ matrix.php }}
6060
uses: shivammathur/setup-php@v2
@@ -178,12 +178,12 @@ jobs:
178178
runs-on: ubuntu-20.04
179179

180180
steps:
181-
- uses: actions/checkout@v2
181+
- uses: actions/checkout@v3
182182

183183
- name: Install PHP
184184
uses: shivammathur/setup-php@v2
185185
with:
186-
php-version: '8.1'
186+
php-version: '8.2'
187187
tools: pecl
188188

189189
- name: Install System Dependencies
@@ -248,7 +248,7 @@ jobs:
248248

249249
steps:
250250
- name: Checkout Code
251-
uses: actions/checkout@v2
251+
uses: actions/checkout@v3
252252
with:
253253
fetch-depth: 1
254254

CHANGELOG.md

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

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

9+
## [1.5.2] - 2022-12-27
10+
### Added
11+
- Enabled support of PHP8.2 for Windows [#141](https://github.com/phalcon/php-zephir-parser/issues/141)
912

1013
## [1.5.1] - 2022-09-19
1114
### Added
@@ -190,7 +193,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
190193
### Added
191194
- Initial stable release
192195

193-
[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.1...HEAD
196+
[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.2...HEAD
197+
[1.5.2]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.1...v1.5.2
194198
[1.5.1]: https://github.com/phalcon/php-zephir-parser/compare/v1.5.0...v1.5.1
195199
[1.5.0]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.2...v1.5.0
196200
[1.4.2]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.1...v1.4.2

VERSION

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

package.xml

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

2929
= Added:
3030

31-
- Enabled support of PHP8.2 for PECL
31+
- Enabled support of PHP8.2 for Windows
3232
</notes>
3333
<contents>
3434
<dir name="/">

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.1"
18+
#define PHP_ZEPHIR_PARSER_VERSION "1.5.2"
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)