From 4bd40f20a203829bcfcf4ec357b5bc93b780679b Mon Sep 17 00:00:00 2001 From: Gennady Feldman Date: Mon, 18 May 2015 18:08:25 -0400 Subject: [PATCH] Fixing PHP_STOMP_VERSION constant, per Remi's request. --- php_stomp.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/php_stomp.h b/php_stomp.h index 5494d48..32c0a6e 100644 --- a/php_stomp.h +++ b/php_stomp.h @@ -29,11 +29,7 @@ typedef struct _stomp_object { } stomp_object_t; #define PHP_STOMP_EXTNAME "Stomp" -#define PHP_STOMP_MAJOR_VERSION "1" -#define PHP_STOMP_MINOR_VERSION "0" -#define PHP_STOMP_PATCH_VERSION "8" -#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_VERSION "1.0.8-dev" #define PHP_STOMP_RES_NAME "stomp connection"