Skip to content

Commit

Permalink
Merge pull request #54 from TysonAndre/fix-license
Browse files Browse the repository at this point in the history
Fix license metadata in package.xml, match LICENSE file
  • Loading branch information
crazyxman authored Aug 30, 2022
2 parents af6270e + ff154a1 commit c1ff2c1
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
28 changes: 22 additions & 6 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,24 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2022-08-29</date>
<date>2022-08-30</date>
<version>
<release>2.0.1</release>
<api>2.0.1</api>
<release>2.0.2</release>
<api>2.0.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.php.net/license/3_0.txt">PHP License</license>
<license uri="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
<notes>
* On 32-bit builds, convert decoded 64-bit integers to floats if they would be out of range.
* Fix license metadata in package.xml
</notes>
<contents>
<dir name="/">
<file name="CMakeLists.txt" role="src"/>
<file name="config.m4" role="src"/>
<file name="config.w32" role="src"/>
<file name="CREDITS" role="doc"/>
<file name="LICENSE" role="doc"/>
<file name="php_simdjson.h" role="src"/>
Expand Down Expand Up @@ -85,6 +86,21 @@
<providesextension>simdjson</providesextension>
<extsrcrelease/>
<changelog>
<release>
<date>2022-08-29</date>
<version>
<release>2.0.1</release>
<api>2.0.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
<notes>
* On 32-bit builds, convert decoded 64-bit integers to floats if they would be out of range.
</notes>
</release>
<release>
<date>2022-08-15</date>
<version>
Expand All @@ -95,7 +111,7 @@
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.php.net/license/3_0.txt">PHP License</license>
<license uri="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
<notes>
* Initial PECL release
</notes>
Expand Down
2 changes: 1 addition & 1 deletion php_simdjson.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
extern zend_module_entry simdjson_module_entry;
#define phpext_simdjson_ptr &simdjson_module_entry

#define PHP_SIMDJSON_VERSION "2.0.1"
#define PHP_SIMDJSON_VERSION "2.0.2"
#define SIMDJSON_SUPPORT_URL "https://github.com/crazyxman/simdjson_php"
#define SIMDJSON_PARSE_FAIL 0
#define SIMDJSON_PARSE_SUCCESS 1
Expand Down

0 comments on commit c1ff2c1

Please sign in to comment.