Skip to content

Commit

Permalink
Merge pull request #4 from runkit7/update-version
Browse files Browse the repository at this point in the history
Update this module's version from 1.0.6 to 1.1.0
  • Loading branch information
TysonAndre authored Aug 16, 2017
2 parents 9b84082 + 473c934 commit af50b2d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 6 deletions.
26 changes: 21 additions & 5 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,32 @@ http://pear.php.net/dtd/package-2.0.xsd">
<name>runkit_object_id</name>
<channel>pecl.php.net</channel>
<summary>Get an integer id for objects.</summary>
<description>Get an integer id for objects. (Similar to spl_object_hash, which returns a hexadecimal string)
<description>Get an integer id for objects. (Similar to spl_object_hash, which returns a hexadecimal string. Same as spl_object_id, which will be built into php 7.2+)
</description>
<lead>
<name>Tyson Andre</name>
<user></user>
<email></email>
<active>yes</active>
</lead>
<date>2017-06-14</date>
<date>2017-08-16</date>
<version>
<release>1.0.6</release>
<api>1.0.6</api>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/BSD-3-Clause">BSD License (3 Clause)</license>
<notes>
Initial release, based on runkit7/runkit7 1.0.5
Add spl_object_id() alias, for PHP 7.1 and below.
</notes>
<contents>
<dir name="/">
<dir name="tests">
<file name="runkit_object_id.phpt" role="test" />
<file name="spl_object_id.phpt" role="test" />
</dir> <!-- //tests -->
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
Expand All @@ -54,6 +55,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
<providesextension>runkit_object_id</providesextension>
<extsrcrelease />
<changelog>
<release>
<date>2017-08-16</date>
<version>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/BSD-3-Clause">BSD License (3 Clause)</license>
<notes>
Add fast native alias for spl_object_id by default, in PHP 5.0-7.1 (unnecessary starting in PHP 7.2)
</notes>
</release>
<release>
<date>2017-06-14</date>
<version>
Expand Down
2 changes: 1 addition & 1 deletion php_runkit_object_id.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include "ext/standard/info.h"
#include "ext/standard/php_string.h"

#define PHP_RUNKIT_OBJECT_ID_VERSION "1.0.6"
#define PHP_RUNKIT_OBJECT_ID_VERSION "1.1.0"

#ifndef phpext_runkit_object_id_ptr
extern zend_module_entry runkit_object_id_module_entry;
Expand Down

0 comments on commit af50b2d

Please sign in to comment.