Skip to content

Commit 846d71a

Browse files
authored
3.1.0 (#106)
1 parent c5d5f29 commit 846d71a

File tree

2 files changed

+31
-11
lines changed

2 files changed

+31
-11
lines changed

package.xml

Lines changed: 30 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,10 @@
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)
29+
- Add support for PIE
3430
</notes>
3531
<contents>
3632
<dir name="/">
@@ -80,6 +76,30 @@
8076
<providesextension>memprof</providesextension>
8177
<extsrcrelease />
8278
<changelog>
79+
<release>
80+
<date>2022-01-07</date>
81+
<time>12:00:00</time>
82+
<version>
83+
<release>3.0.2</release>
84+
<api>1.0.0</api>
85+
</version>
86+
<stability>
87+
<release>stable</release>
88+
<api>stable</api>
89+
</stability>
90+
<license>MIT</license>
91+
<notes>
92+
## Improvements
93+
- PHP 8.1 support (@remicollet)
94+
- Added parameter types and return types (@remicollet)
95+
- dump_on_limit: Append the profile filename to the "Allowed memory size of %d
96+
bytes exhausted" error message (@arnaud-lb)
97+
- Added memprof_version() function (@arnaud-lb)
98+
99+
## Bugfixes
100+
- Fixed compatibility issue with xdebug (@arnaud-lb)
101+
</notes>
102+
</release>
83103
<release>
84104
<date>2021-03-29</date>
85105
<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)