Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2024-10-07</date>
<date>2025-08-02</date>
<version>
<release>2.2.4</release>
<release>2.2.5</release>
<api>2.0.0</api>
</version>
<stability>
Expand All @@ -32,10 +32,7 @@
<license uri="http://www.opensource.org/licenses/mit-license.php">MIT</license>
<notes>
Bugs Fixed:
- #85: PHP 8.4.0 beta4 test yaml_parse_file_002.phpt fails (andypost)
- emit.c: fix -Wsign-compare (bd808)
- #75: yaml_parse_file does not set &amp;$ndoc as expected (tomterl)
- Fix [-Wincompatible-pointer-types] warning (remicollet)
- use Zend/zend_smart_string.h (remicollet)
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -155,6 +152,20 @@
</extsrcrelease>

<changelog>
<release>
<date>2024-10-07</date>
<version>
<release>2.2.4</release>
<api>2.0.0</api>
</version>
<notes>
Bugs Fixed:
- #85: PHP 8.4.0 beta4 test yaml_parse_file_002.phpt fails (andypost)
- emit.c: fix -Wsign-compare (bd808)
- #75: yaml_parse_file does not set &amp;$ndoc as expected (tomterl)
- Fix [-Wincompatible-pointer-types] warning (remicollet)
</notes>
</release>
<release>
<date>2023-03-05</date>
<version>
Expand Down
2 changes: 1 addition & 1 deletion php_yaml.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ extern "C" {
extern "C" {
#endif

#define PHP_YAML_VERSION "2.2.4"
#define PHP_YAML_VERSION "2.2.5"

extern zend_module_entry yaml_module_entry;
#define phpext_yaml_ptr &yaml_module_entry
Expand Down
Loading