Packaging v0.3.2

v1.1
Pierrick Charron 2009-11-22 20:39:07 +00:00
parent 9ec595819e
commit 7c7d9aaaf6
2 changed files with 16 additions and 5 deletions

View File

@ -12,13 +12,14 @@ This extension allows php applications to communicate with any Stomp compliant M
<email>pierrick@php.net</email>
<active>yes</active>
</lead>
<date>2009-11-08</date>
<version><release>0.3.1</release><api>0.3.1</api></version>
<date>2009-11-22</date>
<version><release>0.3.2</release><api>0.3.2</api></version>
<stability><release>beta</release><api>beta</api></stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fix memory leak in stomp_send and in stomp_ack
- Reduced minimum php version to 5.2.2
- Fixed bug #16936 (Module segfaults on readFrame if Frame > STOMP_BUFSIZE)
- Fixed bug #16933 (readFrame does not notice when server shuts down)
- Fixed bug #16930 (readFrame reports error-frames as "timeout")
</notes>
<contents>
@ -77,6 +78,16 @@ This extension allows php applications to communicate with any Stomp compliant M
</extsrcrelease>
<changelog>
<release>
<version><release>0.3.1</release><api>0.3.1</api></version>
<stability><release>beta</release><api>beta</api></stability>
<license uri="http://www.php.net/license">PHP License</license>
<date>2009-11-08</date>
<notes>
- Fix memory leak in stomp_send and in stomp_ack
- Reduced minimum php version to 5.2.2
</notes>
</release>
<release>
<version><release>0.3.0</release><api>0.3.0</api></version>
<stability><release>beta</release><api>beta</api></stability>

View File

@ -31,7 +31,7 @@ typedef struct _stomp_object {
#define PHP_STOMP_EXTNAME "Stomp"
#define PHP_STOMP_MAJOR_VERSION "0"
#define PHP_STOMP_MINOR_VERSION "3"
#define PHP_STOMP_PATCH_VERSION "0"
#define PHP_STOMP_PATCH_VERSION "2"
#define PHP_STOMP_VERSION PHP_STOMP_MAJOR_VERSION "." PHP_STOMP_MINOR_VERSION "." PHP_STOMP_PATCH_VERSION
#define PHP_STOMP_RES_NAME "stomp connection"