diff --git a/NEWS b/NEWS index 99046b12..5a20e18e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +XML-RPC for PHP version 4.7.0 - 2022/5/25 + +* new: HTTP/2 is supported by both the Client and Server components (with the php cURL extension being required to use + it client-side). + To force the client to use http/2 and http/2-tls requests, pass `http2` or `http2tls` as 3rd argument to `Client::send`. + + XML-RPC for PHP version 4.6.1 - 2022/2/15 * fixed: one php warning with php 8 and up diff --git a/src/PhpXmlRpc.php b/src/PhpXmlRpc.php index 2f4daff1..e49c1eb2 100644 --- a/src/PhpXmlRpc.php +++ b/src/PhpXmlRpc.php @@ -80,7 +80,7 @@ class PhpXmlRpc public static $xmlrpc_internalencoding = "UTF-8"; public static $xmlrpcName = "XML-RPC for PHP"; - public static $xmlrpcVersion = "4.7.0-dev"; + public static $xmlrpcVersion = "4.7.0"; // let user errors start at 800 public static $xmlrpcerruser = 800;