1.0.5 => 1.0.6-dev

v1.1
Pierrick Charron 2012-11-18 17:35:17 -05:00
parent 5a3c1fe602
commit ce374724b9
2 changed files with 4 additions and 9 deletions

View File

@ -12,16 +12,11 @@ This extension allows php applications to communicate with any Stomp compliant M
<email>pierrick@php.net</email>
<active>yes</active>
</lead>
<date>2012-11-18</date>
<version><release>1.0.5</release><api>1.0.5</api></version>
<date>XXXX-XX-XX</date>
<version><release>1.0.X</release><api>1.0.X</api></version>
<stability><release>stable</release><api>stable</api></stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- 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)
</notes>
<contents>
<dir name="/">

View File

@ -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"