-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 &$ndoc as expected (tomterl) - Fix [-Wincompatible-pointer-types] warning (remicollet)
- Loading branch information
Showing
1 changed file
with
22 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,9 @@ | |
<email>[email protected]</email> | ||
<active>yes</active> | ||
</lead> | ||
<date>2023-03-05</date> | ||
<date>2024-10-07</date> | ||
<version> | ||
<release>2.2.3</release> | ||
<release>2.2.4</release> | ||
<api>2.0.0</api> | ||
</version> | ||
<stability> | ||
|
@@ -31,10 +31,11 @@ | |
</stability> | ||
<license uri="http://www.opensource.org/licenses/mit-license.php">MIT</license> | ||
<notes> | ||
Bugs Fixed: | ||
- Fixed memory release on error handling (negram) | ||
- Fix test for PHP 8.2 (andypost) | ||
- #65: Fix #65 yaml_parse_url method not working (remicollet) | ||
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 &$ndoc as expected (tomterl) | ||
- Fix [-Wincompatible-pointer-types] warning (remicollet) | ||
</notes> | ||
<contents> | ||
<dir name="/"> | ||
|
@@ -95,6 +96,8 @@ | |
<file role="test" name="yaml_parse_file_001.phpt" /> | ||
<file role="test" name="yaml_parse_file_001.yaml" /> | ||
<file role="test" name="yaml_parse_file_002.phpt" /> | ||
<file role="test" name="yaml_parse_file_003.phpt" /> | ||
<file role="test" name="yaml_parse_file_003.yaml" /> | ||
<file role="test" name="yaml_parse_spec_binary.phpt" /> | ||
<file role="test" name="yaml_parse_spec_bool.phpt" /> | ||
<file role="test" name="yaml_parse_spec_float.phpt" /> | ||
|
@@ -152,6 +155,19 @@ | |
</extsrcrelease> | ||
|
||
<changelog> | ||
<release> | ||
<date>2023-03-05</date> | ||
<version> | ||
<release>2.2.3</release> | ||
<api>2.0.0</api> | ||
</version> | ||
<notes> | ||
Bugs Fixed: | ||
- Fixed memory release on error handling (negram) | ||
- Fix test for PHP 8.2 (andypost) | ||
- #65: Fix #65 yaml_parse_url method not working (remicollet) | ||
</notes> | ||
</release> | ||
<release> | ||
<date>2021-10-24</date> | ||
<version> | ||
|