Skip to content

Commit d463508

Browse files
authored
Merge pull request #55 from TysonAndre/fix-lead-validation-error
Comment out lead section - blank username fails validation
2 parents c1ff2c1 + 5afdc8c commit d463508

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

package.xml

+20-3
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,26 @@
1010
<email>tandre@php.net</email>
1111
<active>yes</active>
1212
</lead>
13+
<!-- https://pecl.php.net/release-upload.php fails with "User does not exist" for blank username, there is no corresponding PECL account.
1314
<lead>
1415
<name>Jinxi Wang</name>
1516
<user></user>
1617
<email>1054636713@qq.com</email>
1718
<active>yes</active>
1819
</lead>
20+
-->
1921
<date>2022-08-30</date>
2022
<version>
21-
<release>2.0.2</release>
22-
<api>2.0.2</api>
23+
<release>2.0.3</release>
24+
<api>2.0.3</api>
2325
</version>
2426
<stability>
2527
<release>stable</release>
2628
<api>stable</api>
2729
</stability>
2830
<license uri="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
2931
<notes>
30-
* Fix license metadata in package.xml
32+
* Fix error validating package.xml when uploading to PECL due to blank username of lead without a PECL account.
3133
</notes>
3234
<contents>
3335
<dir name="/">
@@ -86,6 +88,21 @@
8688
<providesextension>simdjson</providesextension>
8789
<extsrcrelease/>
8890
<changelog>
91+
<release>
92+
<date>2022-08-30</date>
93+
<version>
94+
<release>2.0.2</release>
95+
<api>2.0.2</api>
96+
</version>
97+
<stability>
98+
<release>stable</release>
99+
<api>stable</api>
100+
</stability>
101+
<license uri="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
102+
<notes>
103+
* Fix license metadata in package.xml
104+
</notes>
105+
</release>
89106
<release>
90107
<date>2022-08-29</date>
91108
<version>

php_simdjson.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
extern zend_module_entry simdjson_module_entry;
1818
#define phpext_simdjson_ptr &simdjson_module_entry
1919

20-
#define PHP_SIMDJSON_VERSION "2.0.2"
20+
#define PHP_SIMDJSON_VERSION "2.0.3"
2121
#define SIMDJSON_SUPPORT_URL "https://github.com/crazyxman/simdjson_php"
2222
#define SIMDJSON_PARSE_FAIL 0
2323
#define SIMDJSON_PARSE_SUCCESS 1

0 commit comments

Comments
 (0)