Skip to content

Commit 606fd54

Browse files
Release 1.2.2
1 parent 01c824c commit 606fd54

File tree

2 files changed

+25
-7
lines changed

2 files changed

+25
-7
lines changed

package.xml

+24-6
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
<email>[email protected]</email>
2323
<active>yes</active>
2424
</lead>
25-
<date>2022-10-29</date>
25+
<date>2024-06-16</date>
2626
<version>
27-
<release>1.2.1</release>
27+
<release>1.2.2</release>
2828
<api>1.2.0</api>
2929
</version>
3030
<stability>
@@ -33,10 +33,10 @@
3333
</stability>
3434
<license uri="http://www.php.net/license">PHP License</license>
3535
<notes>
36-
- Fix segfault when constructing sync objects
37-
- Fix heap buffer overflows when copying functions
38-
- Drop disabling functions (dl, setlocale) by force and adopt PG(enable_dl) mechanism for that most important use case
39-
- Fix some leaks in scheduler
36+
- CI: move docker images from Docker Hub to GHCR
37+
- fix compilation issues with PHP 8.2 and 8.3 on 32 bit hardware
38+
- fix compilation issues with PHP 8.4 (current master)
39+
- fix Sync object debug handlers in PHP 8.3
4040
</notes>
4141
<contents>
4242
<dir name="/">
@@ -270,6 +270,24 @@
270270
<providesextension>parallel</providesextension>
271271
<extsrcrelease/>
272272
<changelog>
273+
<release>
274+
<date>2022-10-29</date>
275+
<version>
276+
<release>1.2.1</release>
277+
<api>1.2.0</api>
278+
</version>
279+
<stability>
280+
<release>stable</release>
281+
<api>stable</api>
282+
</stability>
283+
<license uri="http://www.php.net/license">PHP License</license>
284+
<notes>
285+
- Fix segfault when constructing sync objects
286+
- Fix heap buffer overflows when copying functions
287+
- Drop disabling functions (dl, setlocale) by force and adopt PG(enable_dl) mechanism for that most important use case
288+
- Fix some leaks in scheduler
289+
</notes>
290+
</release>
273291
<release>
274292
<date>2022-10-24</date>
275293
<version>

php_parallel.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
extern zend_module_entry parallel_module_entry;
2323
# define phpext_parallel_ptr &parallel_module_entry
2424

25-
# define PHP_PARALLEL_VERSION "1.2.2-dev"
25+
# define PHP_PARALLEL_VERSION "1.2.2"
2626

2727
# if !defined(ZTS)
2828
# error Only ZTS build are supported

0 commit comments

Comments
 (0)