diff --git a/package.xml b/package.xml index 44f019bf..38811e9f 100644 --- a/package.xml +++ b/package.xml @@ -10,11 +10,11 @@ krakjoe@php.net yes - 2015-09-27 - + 2015-10-07 + - 3.0.7 - 3.0.7 + 3.0.8 + 3.0.8 stable @@ -22,11 +22,10 @@ PHP License - fix issue destroying monitors (deadlocking on shutdown) - remove Thread::kill - disable auto-join on __destruct of Thread - use global persistent shared strings table - support compiling and linking with AddressSanitizer support + fix gh issue #493 (exception handling bug) + fix gh issue #495 (constant AST bug) + creation/destruction of additional contexts done inside critical section for stability + remove a bunch of redundant code, various @@ -56,11 +55,13 @@ + + diff --git a/php_pthreads.h b/php_pthreads.h index 24116ca3..232d5393 100644 --- a/php_pthreads.h +++ b/php_pthreads.h @@ -18,7 +18,7 @@ #ifndef HAVE_PHP_PTHREADS_H #define HAVE_PHP_PTHREADS_H #define PHP_PTHREADS_EXTNAME "pthreads" -#define PHP_PTHREADS_VERSION "3.0.8" +#define PHP_PTHREADS_VERSION "3.0.9" PHP_MINIT_FUNCTION(pthreads); PHP_MSHUTDOWN_FUNCTION(pthreads);