Update package.xml

v1.1
Pierrick Charron 2010-08-13 14:06:56 +00:00
parent 77271afef3
commit 8655cf0971
2 changed files with 13 additions and 5 deletions

View File

@ -12,12 +12,11 @@ This extension allows php applications to communicate with any Stomp compliant M
<email>pierrick@php.net</email>
<active>yes</active>
</lead>
<date>2010-08-13</date>
<version><release>1.0.2</release><api>1.0.2</api></version>
<date>xxxx-xx-xx</date>
<version><release>1.x.x</release><api>1.x.x</api></version>
<stability><release>stable</release><api>stable</api></stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed SSL connection bug introduced in 1.0.1
</notes>
<contents>
@ -76,6 +75,15 @@ This extension allows php applications to communicate with any Stomp compliant M
</extsrcrelease>
<changelog>
<release>
<version><release>1.0.2</release><api>1.0.2</api></version>
<stability><release>stable</release><api>stable</api></stability>
<license uri="http://www.php.net/license">PHP License</license>
<date>2010-08-13</date>
<notes>
- Fixed SSL connection bug introduced in 1.0.1
</notes>
</release>
<release>
<version><release>1.0.1</release><api>1.0.1</api></version>
<stability><release>stable</release><api>stable</api></stability>

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 "2"
#define PHP_STOMP_VERSION_STATUS ""
#define PHP_STOMP_PATCH_VERSION "3"
#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"