From 39e37edde67edc548390695986d407f4db067eb1 Mon Sep 17 00:00:00 2001 From: gggeek Date: Mon, 20 Jun 2022 18:33:56 +0000 Subject: [PATCH] tag for release --- NEWS | 5 ++++- src/PhpXmlRpc.php | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index a0442350..bdcb684b 100644 --- a/NEWS +++ b/NEWS @@ -1,10 +1,13 @@ -XML-RPC for PHP version 4.X.Y - unreleased +XML-RPC for PHP version 4.8.0 - 2022/6/20 * fixed: the `benchmark.php` file had seen some tests accidentally dropped * improved: added method `Client::prepareCurlHandle`, to make it easier to send multiple requests in parallel when using curl and the server does not support `system.multicall`. See new demo file `parallel.php` for how this can be done. +* fixed: error 'Class "PhpXmlRpc\Exception\PhpXmlrpcException" not found' when including `xmlrpc.inc` and on php 8.1 + (might also happen on other php versions) + XML-RPC for PHP version 4.7.2 - 2022/5/25 diff --git a/src/PhpXmlRpc.php b/src/PhpXmlRpc.php index cc793512..76ea4cd2 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.8.0-dev"; + public static $xmlrpcVersion = "4.8.0"; // let user errors start at 800 public static $xmlrpcerruser = 800;