From ca0de7d66ab14398f1508efc442c5b45309971c6 Mon Sep 17 00:00:00 2001 From: Pierrick Charron Date: Sun, 7 Dec 2014 21:53:45 -0500 Subject: [PATCH] Release stomp v1.0.6 --- package.xml | 24 ++++++++++++------------ php_stomp.h | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/package.xml b/package.xml index c456ef4..d74f6c7 100644 --- a/package.xml +++ b/package.xml @@ -4,7 +4,7 @@ pecl.php.net Stomp client extension -This extension allows php applications to communicate with any Stomp compliant Message Brokers through easy object oriented and procedural interfaces. +This extension allows php applications to communicate with any Stomp compliant Message Brokers through easy object oriented and procedural interfaces. Pierrick Charron @@ -12,8 +12,8 @@ This extension allows php applications to communicate with any Stomp compliant M pierrick@php.net yes - XXXX-XX-XX - 1.0.X1.0.X + 2014-12-07 + 1.0.61.0.6 stablestable PHP License @@ -80,7 +80,7 @@ This extension allows php applications to communicate with any Stomp compliant M stomp - + @@ -121,7 +121,7 @@ This extension allows php applications to communicate with any Stomp compliant M PHP License 2010-08-13 -- Fixed SSL connection bug introduced in 1.0.1 +- Fixed SSL connection bug introduced in 1.0.1 @@ -147,7 +147,7 @@ This extension allows php applications to communicate with any Stomp compliant M - Bump to stable - + 0.4.10.4.1 betabeta PHP License @@ -171,10 +171,10 @@ This extension allows php applications to communicate with any Stomp compliant M PHP License 2009-11-22 -- Adds alt class +- Adds alt class - 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") +- Fixed bug #16930 (readFrame reports error-frames as "timeout") @@ -196,8 +196,8 @@ This extension allows php applications to communicate with any Stomp compliant M - new stomp_connect_error() function (pierrick) - stomp_begin, stomp_abort and stomp_commit now accept additional headers (pierrick) - new connection timeout and read timeout ini configuration (pierrick) -- Fix a memory leak in stomp_read_line (pierrick) -- Better set of test (Pierrick and Anis) +- Fix a memory leak in stomp_read_line (pierrick) +- Better set of test (Pierrick and Anis) @@ -207,7 +207,7 @@ This extension allows php applications to communicate with any Stomp compliant M 2009-11-01 - Windows build fix (kalle) -- Add SSL support (pierrick) +- Add SSL support (pierrick) @@ -216,7 +216,7 @@ This extension allows php applications to communicate with any Stomp compliant M PHP License 2009-10-30 -- Initial PECL release. (pierrick) +- Initial PECL release. (pierrick) diff --git a/php_stomp.h b/php_stomp.h index 89200a4..ceb458f 100644 --- a/php_stomp.h +++ b/php_stomp.h @@ -32,7 +32,7 @@ typedef struct _stomp_object { #define PHP_STOMP_MAJOR_VERSION "1" #define PHP_STOMP_MINOR_VERSION "0" #define PHP_STOMP_PATCH_VERSION "6" -#define PHP_STOMP_VERSION_STATUS "-dev" +#define PHP_STOMP_VERSION_STATUS "" #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"