From 0c0b5aedfb64c358cc0a8f999fcc0d88adef4770 Mon Sep 17 00:00:00 2001 From: gggeek Date: Wed, 25 May 2022 14:25:43 +0000 Subject: [PATCH] tag for release 4.7.0 --- NEWS | 7 +++++++ src/PhpXmlRpc.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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;