From a3e4bb629d39d3168d1304009e198a848aa14a08 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 17 Jul 2006 16:30:52 +0000 Subject: [PATCH] - release 1.1.0 --- package.xml | 15 ++++++++++----- package2.xml | 5 +++-- php_http.h | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/package.xml b/package.xml index bf499cc..2ee9e0b 100644 --- a/package.xml +++ b/package.xml @@ -1,6 +1,6 @@ - + pecl_http Extended HTTP Support This HTTP extension aims to provide a convenient and powerful @@ -23,12 +23,17 @@ support. Parallel requests are available for PHP 5 and greater. - 1.0.1 - 2006-06-26 + 1.1.0 + 2006-07-17 BSD, revised stable - * Fixed build with gcc-2.95 (Thanks to Alexander Zhuravlev) -* Fixed memory leak in inflate code (Thanks to Thomas Landro Johnsen) + * Fixed endless loop in http_build_url("..") +* Fixed HttpResponse::capture() failure if buffered output exceeds 40k +* Fixed HttpQueryString failures with objects as params +* Fixed memory leaks with overloaded classes extending HTTP classes +* Added HttpQueryString::mod(array $params) method +* Added ArrayAccess to interfaces implemented by HttpQueryString +* Added HttpMessage::getHeader(string $name) method diff --git a/package2.xml b/package2.xml index ed5c16f..04c2cd7 100644 --- a/package2.xml +++ b/package2.xml @@ -28,9 +28,9 @@ support. Parallel requests are available for PHP 5 and greater. mike@php.net yes - 2006-00-00 + 2006-07-17 - 1.1.0dev + 1.1.0 1.1.0 @@ -42,6 +42,7 @@ support. Parallel requests are available for PHP 5 and greater. * Fixed endless loop in http_build_url("..") * Fixed HttpResponse::capture() failure if buffered output exceeds 40k * Fixed HttpQueryString failures with objects as params +* Fixed memory leaks with overloaded classes extending HTTP classes * Added HttpQueryString::mod(array $params) method * Added ArrayAccess to interfaces implemented by HttpQueryString * Added HttpMessage::getHeader(string $name) method diff --git a/php_http.h b/php_http.h index 3f11b66..4ae6574 100644 --- a/php_http.h +++ b/php_http.h @@ -15,7 +15,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define PHP_EXT_HTTP_VERSION "1.1.0dev" +#define PHP_EXT_HTTP_VERSION "1.1.0" #ifdef HAVE_CONFIG_H # include "config.h" -- 2.30.2