Skip to content

Commit b2889f8

Browse files
committed
3.1.0
1 parent c5d5f29 commit b2889f8

File tree

2 files changed

+30
-11
lines changed

2 files changed

+30
-11
lines changed

package.xml

Lines changed: 29 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<email>[email protected]</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2022-01-07</date>
13+
<date>2025-02-24</date>
1414
<time>12:00:00</time>
1515
<version>
16-
<release>3.0.2</release>
16+
<release>3.1.0</release>
1717
<api>1.0.0</api>
1818
</version>
1919
<stability>
@@ -23,14 +23,9 @@
2323
<license>MIT</license>
2424
<notes>
2525
## Improvements
26-
- PHP 8.1 support (@remicollet)
27-
- Added parameter types and return types (@remicollet)
28-
- dump_on_limit: Append the profile filename to the "Allowed memory size of %d
29-
bytes exhausted" error message (@arnaud-lb)
30-
- Added memprof_version() function (@arnaud-lb)
31-
32-
## Bugfixes
33-
- Fixed compatibility issue with xdebug (@arnaud-lb)
26+
- Use filename for script and binary instead of /todo.php (@samlitowitz, #92)
27+
- Allow output_format to be defined from ini setting (@gaelreyrol, #97)
28+
- Add units to Callgrind label for memory size and update `BlockCount` to `Call_Count` (@samlitowitz, #95)
3429
</notes>
3530
<contents>
3631
<dir name="/">
@@ -80,6 +75,30 @@
8075
<providesextension>memprof</providesextension>
8176
<extsrcrelease />
8277
<changelog>
78+
<release>
79+
<date>2022-01-07</date>
80+
<time>12:00:00</time>
81+
<version>
82+
<release>3.0.2</release>
83+
<api>1.0.0</api>
84+
</version>
85+
<stability>
86+
<release>stable</release>
87+
<api>stable</api>
88+
</stability>
89+
<license>MIT</license>
90+
<notes>
91+
## Improvements
92+
- PHP 8.1 support (@remicollet)
93+
- Added parameter types and return types (@remicollet)
94+
- dump_on_limit: Append the profile filename to the "Allowed memory size of %d
95+
bytes exhausted" error message (@arnaud-lb)
96+
- Added memprof_version() function (@arnaud-lb)
97+
98+
## Bugfixes
99+
- Fixed compatibility issue with xdebug (@arnaud-lb)
100+
</notes>
101+
</release>
83102
<release>
84103
<date>2021-03-29</date>
85104
<time>12:00:00</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 "3.0.2"
19+
#define PHP_MEMPROF_VERSION "3.1.0"
2020

2121
extern zend_module_entry memprof_module_entry;
2222
#define phpext_memprof_ptr &memprof_module_entry

0 commit comments

Comments
 (0)