Skip to content
Merged

3.1.0 #106

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 30 additions & 10 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2022-01-07</date>
<date>2025-02-24</date>
<time>12:00:00</time>
<version>
<release>3.0.2</release>
<release>3.1.0</release>
<api>1.0.0</api>
</version>
<stability>
Expand All @@ -23,14 +23,10 @@
<license>MIT</license>
<notes>
## Improvements
- PHP 8.1 support (@remicollet)
- Added parameter types and return types (@remicollet)
- dump_on_limit: Append the profile filename to the "Allowed memory size of %d
bytes exhausted" error message (@arnaud-lb)
- Added memprof_version() function (@arnaud-lb)

## Bugfixes
- Fixed compatibility issue with xdebug (@arnaud-lb)
- Use filename for script and binary instead of /todo.php (@samlitowitz, #92)
- Allow output_format to be defined from ini setting (@gaelreyrol, #97)
- Add units to Callgrind label for memory size and update `BlockCount` to `Call_Count` (@samlitowitz, #95)
- Add support for PIE
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -80,6 +76,30 @@
<providesextension>memprof</providesextension>
<extsrcrelease />
<changelog>
<release>
<date>2022-01-07</date>
<time>12:00:00</time>
<version>
<release>3.0.2</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license>MIT</license>
<notes>
## Improvements
- PHP 8.1 support (@remicollet)
- Added parameter types and return types (@remicollet)
- dump_on_limit: Append the profile filename to the "Allowed memory size of %d
bytes exhausted" error message (@arnaud-lb)
- Added memprof_version() function (@arnaud-lb)

## Bugfixes
- Fixed compatibility issue with xdebug (@arnaud-lb)
</notes>
</release>
<release>
<date>2021-03-29</date>
<time>12:00:00</time>
Expand Down
2 changes: 1 addition & 1 deletion php_memprof.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#define PHP_MEMPROF_H

#define MEMPROF_NAME "memprof"
#define PHP_MEMPROF_VERSION "3.0.2"
#define PHP_MEMPROF_VERSION "3.1.0"

extern zend_module_entry memprof_module_entry;
#define phpext_memprof_ptr &memprof_module_entry
Expand Down
Loading