Skip to content

Commit

Permalink
Merge pull request #114 from BitOne/prep_v1_1_1
Browse files Browse the repository at this point in the history
Prepare v1.1.1
  • Loading branch information
BitOne committed Feb 17, 2021
2 parents 4e8bb2a + c6d4061 commit 8dfdb2a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 1.1.1 PHP Meminfo v1.1.1 (2021-02-17)
Fixes segfault on symbol table not properly rebuilt.

# 1.1 PHP Meminfo v1.1 (2021-02-15)
This version drops support for PHP 5.5 and adds official supports for PHP 7.4.

Thanks a lot to @tony2001, @WyriHaximus, @vudaltsov and @ahocquard for their contibutions on making PHP Meminfo compatible with PHP .7.4!

# 1.0.4 Ygramul (2018-08-13)
- [GITHUB-75](https://github.com/BitOne/php-meminfo/issues/75) Now goes through static members of classes as well the usual frame execution browsing.

Expand Down
4 changes: 2 additions & 2 deletions extension/php5/php_meminfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#define phpext_meminfo_ptr &meminfo_module_entry

#define MEMINFO_NAME "PHP Meminfo"
#define MEMINFO_VERSION "1.0"
#define MEMINFO_VERSION "1.1.1"
#define MEMINFO_AUTHOR "Benoit Jacquemont"
#define MEMINFO_COPYRIGHT "Copyright (c) 2010-2017 by Benoit Jacquemont"
#define MEMINFO_COPYRIGHT "Copyright (c) 2010-2017 by Benoit Jacquemont & contributors"
#define MEMINFO_COPYRIGHT_SHORT "Copyright (c) 2011-2017"

extern zend_module_entry meminfo_entry;
Expand Down
4 changes: 2 additions & 2 deletions extension/php7/php_meminfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ extern zend_module_entry meminfo_module_entry;
#define phpext_meminfo_ptr &meminfo_module_entry

#define MEMINFO_NAME "PHP Meminfo"
#define MEMINFO_VERSION "1.0"
#define MEMINFO_VERSION "1.1.1"
#define MEMINFO_AUTHOR "Benoit Jacquemont"
#define MEMINFO_COPYRIGHT "Copyright (c) 2010-2017 by Benoit Jacquemont"
#define MEMINFO_COPYRIGHT "Copyright (c) 2010-2017 by Benoit Jacquemont & contributors"
#define MEMINFO_COPYRIGHT_SHORT "Copyright (c) 2011-2017"

PHP_FUNCTION(meminfo_dump);
Expand Down

0 comments on commit 8dfdb2a

Please sign in to comment.