Skip to content

Commit a1cb6f8

Browse files
committed
2.1.0
1 parent ed67de7 commit a1cb6f8

File tree

2 files changed

+23
-6
lines changed

2 files changed

+23
-6
lines changed

package2.xml

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<package packagerversion="1.9.4" version="2.1" xmlns="http://pear.php.net/dtd/package-2.1" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.1 http://pear.php.net/dtd/package-2.1.xsd">
33
<name>memprof</name>
44
<channel>pecl.php.net</channel>
5-
<summary>memory usage profiler</summary>
6-
<description>Memory usage profiler for PHP scripts.</description>
5+
<summary>Memory profiler</summary>
6+
<description>Memprof is a fast and accurate memory profiler that can be used to find the cause of memory leaks in PHP applications.</description>
77
<lead>
88
<name>Arnaud Le Blanc</name>
99
<user>lbarnaud</user>
1010
<email>[email protected]</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2017-01-28</date>
13+
<date>2020-07-04</date>
1414
<time>12:00:00</time>
1515
<version>
16-
<release>2.0.0</release>
16+
<release>2.1.0</release>
1717
<api>1.0.0</api>
1818
</version>
1919
<stability>
@@ -22,7 +22,8 @@
2222
</stability>
2323
<license>BSD</license>
2424
<notes>
25-
* PHP 7 version
25+
* Added a way to trigger profiling from the environment
26+
* Stability improvements
2627
</notes>
2728
<contents>
2829
<dir name="/">
@@ -49,6 +50,22 @@
4950
<providesextension>memprof</providesextension>
5051
<extsrcrelease />
5152
<changelog>
53+
<release>
54+
<date>2017-01-28</date>
55+
<time>12:00:00</time>
56+
<version>
57+
<release>2.0.0</release>
58+
<api>1.0.0</api>
59+
</version>
60+
<stability>
61+
<release>stable</release>
62+
<api>stable</api>
63+
</stability>
64+
<license>BSD</license>
65+
<notes>
66+
* PHP 7 version
67+
</notes>
68+
</release>
5269
<release>
5370
<date>2013-05-21</date>
5471
<time>17:05:36</time>

php_memprof.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#define PHP_MEMPROF_H
1717

1818
#define MEMPROF_NAME "memprof"
19-
#define PHP_MEMPROF_VERSION "2.0.0"
19+
#define PHP_MEMPROF_VERSION "2.1.0"
2020

2121
extern zend_module_entry memprof_module_entry;
2222
#define phpext_memprof_ptr &memprof_module_entry

0 commit comments

Comments
 (0)