Skip to content

Commit 0c81894

Browse files
committed
Make 2.2.0 release
New Features: - PHP 8.0 compatibility Bugs Fixed: - #79866 Use serialize_precision when encoding double values (bd808) - yaml_parse_file_002.phpt: Fix expectations for PHP 8.0.0beta1 (bd808) - Remove use of call_user_function_ex() for compat with PHP 8.0.0a2 (andypost) - Adjust test values for compat with 32bit platforms (bd808) - Fix memory leaks (cmb69) - #79567 Parsing long long values leads to truncation on LLP64 platforms (bd808) - #77720 Out of memory error when parsing yaml file (bd808) - [-Wformat=] issue on 32-bit (remicollet) - relax test on 32-bit (overflow to float) (remicollet)
1 parent e1a1b24 commit 0c81894

File tree

2 files changed

+30
-5
lines changed

2 files changed

+30
-5
lines changed

package.xml

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,29 @@
2020
<email>[email protected]</email>
2121
<active>yes</active>
2222
</lead>
23-
<date>2020-09-13</date>
23+
<date>2020-11-28</date>
2424
<version>
25-
<release>2.2.0b2</release>
25+
<release>2.2.0</release>
2626
<api>2.0.0</api>
2727
</version>
2828
<stability>
29-
<release>beta</release>
29+
<release>stable</release>
3030
<api>stable</api>
3131
</stability>
3232
<license uri="http://www.opensource.org/licenses/mit-license.php">MIT</license>
3333
<notes>
3434
New Features:
35-
- PHP 8.0.0b3+ compatibility
35+
- PHP 8.0 compatibility
36+
Bugs Fixed:
37+
- #79866 Use serialize_precision when encoding double values (bd808)
38+
- yaml_parse_file_002.phpt: Fix expectations for PHP 8.0.0beta1 (bd808)
39+
- Remove use of call_user_function_ex() for compat with PHP 8.0.0a2 (andypost)
40+
- Adjust test values for compat with 32bit platforms (bd808)
41+
- Fix memory leaks (cmb69)
42+
- #79567 Parsing long long values leads to truncation on LLP64 platforms (bd808)
43+
- #77720 Out of memory error when parsing yaml file (bd808)
44+
- [-Wformat=] issue on 32-bit (remicollet)
45+
- relax test on 32-bit (overflow to float) (remicollet)
3646
</notes>
3747
<contents>
3848
<dir name="/">
@@ -148,6 +158,21 @@
148158
</extsrcrelease>
149159

150160
<changelog>
161+
<release>
162+
<date>2020-09-13</date>
163+
<version>
164+
<release>2.2.0b2</release>
165+
<api>2.0.0</api>
166+
</version>
167+
<stability>
168+
<release>beta</release>
169+
<api>stable</api>
170+
</stability>
171+
<notes>
172+
New Features:
173+
- PHP 8.0.0b3+ compatibility
174+
</notes>
175+
</release>
151176
<release>
152177
<date>2020-08-16</date>
153178
<version>

php_yaml.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ extern "C" {
7070
extern "C" {
7171
#endif
7272

73-
#define PHP_YAML_VERSION "2.2.0b2"
73+
#define PHP_YAML_VERSION "2.2.0"
7474

7575
extern zend_module_entry yaml_module_entry;
7676
#define phpext_yaml_ptr &yaml_module_entry

0 commit comments

Comments
 (0)