Skip to content

Commit

Permalink
prepare 5.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
remicollet committed Aug 3, 2017
1 parent 1e81e56 commit 7bdeda8
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,15 @@ config.status
config.sub
configure
configure.in
configure.ac
install-sh
libtool
ltmain.sh
ltmain.sh.backup
missing
mkinstalldirs
run-tests.php
test.ini
tmp-php.ini
autom4te.cache
uopz-*.tgz
24 changes: 20 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ It supports the following activities:
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2016-04-13</date>
<time>13:00:00</time>
<date>2017-08-03</date>
<version>
<release>5.0.2dev</release>
<release>5.0.2</release>
<api>5.0.0</api>
</version>
<stability>
Expand All @@ -41,7 +40,16 @@ It supports the following activities:
</stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
-
- add uopz.disable ini switch (default 0)
- fix gh#43: setting hook on __invoke method doesn't work on call_user_func
- fix gh#48: segmentation fault (uopz_set_return)
- add 4 new functions:
- uopz_call_user_func(callable function, ... args)

This comment has been minimized.

Copy link
@krakjoe

krakjoe Aug 3, 2017

Owner

this and cufa aren't really meant for user execution, they are used to overload the original internal cuf/cufa functions ...

- uopz_get_exit_status()
- uopz_allow_exit(bool allow)
- uopz_call_user_func_array(callable function, array args)
- fix PHP 7.1 compatibility
- fix PHP 7.2 compatibility
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -74,6 +82,7 @@ It supports the following activities:
<file name="006.phpt" role="test" />
<file name="007.phpt" role="test" />
<file name="008.phpt" role="test" />
<file name="009.phpt" role="test" />
<file name="010.phpt" role="test" />
<file name="011.phpt" role="test" />
<file name="012.phpt" role="test" />
Expand All @@ -84,7 +93,14 @@ It supports the following activities:
<file name="017.phpt" role="test" />
<file name="018.phpt" role="test" />
<file name="019.phpt" role="test" />
<file name="020.phpt" role="test" />
<file name="021.phpt" role="test" />
<file name="skipif.inc" role="test" />
<dir name="/bugs">
<file name="0001-uopz_set_static.phpt" role="test" />
<file name="0002-uopz_set_static_clear.phpt" role="test" />
<file name="gh43.phpt" role="test" />
</dir>
</dir>
<file name="uopz.h" role="src" />
<file name="uopz.c" role="src" />
Expand Down
2 changes: 1 addition & 1 deletion uopz.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
extern zend_module_entry uopz_module_entry;
#define phpext_uopz_ptr &uopz_module_entry

#define PHP_UOPZ_VERSION "5.0.2dev"
#define PHP_UOPZ_VERSION "5.0.2"
#define PHP_UOPZ_EXTNAME "uopz"

ZEND_BEGIN_MODULE_GLOBALS(uopz)
Expand Down

1 comment on commit 7bdeda8

@remicollet
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@krakjoe can you please give a quick look to the Changelog entries ?

Please sign in to comment.