diff --git a/package.xml b/package.xml index 5219c40..0523889 100644 --- a/package.xml +++ b/package.xml @@ -12,16 +12,11 @@ This extension allows php applications to communicate with any Stomp compliant M pierrick@php.net yes - 2012-11-18 - 1.0.51.0.5 + XXXX-XX-XX + 1.0.X1.0.X stablestable PHP License -- Fix memory leak when Stomp can't write the message on the queue. (Pierrick) -- Add a buffer for receipts. (Pierrick) -- Fixed bug #62831 (Stomp module seems not initializing SSL library first). - (Patch by lwhsu at lwhsu dot org) -- Fixed bug #59972 (Message body are not binary safe). (Pierrick) diff --git a/php_stomp.h b/php_stomp.h index 945ff96..2dad9c3 100644 --- a/php_stomp.h +++ b/php_stomp.h @@ -31,8 +31,8 @@ typedef struct _stomp_object { #define PHP_STOMP_EXTNAME "Stomp" #define PHP_STOMP_MAJOR_VERSION "1" #define PHP_STOMP_MINOR_VERSION "0" -#define PHP_STOMP_PATCH_VERSION "5" -#define PHP_STOMP_VERSION_STATUS "" +#define PHP_STOMP_PATCH_VERSION "6" +#define PHP_STOMP_VERSION_STATUS "-dev" #define PHP_STOMP_VERSION PHP_STOMP_MAJOR_VERSION "." PHP_STOMP_MINOR_VERSION "." PHP_STOMP_PATCH_VERSION PHP_STOMP_VERSION_STATUS #define PHP_STOMP_RES_NAME "stomp connection"