Skip to content

Commit 28a2b57

Browse files
committed
tag 4 release
1 parent 1fc5e7c commit 28a2b57

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

NEWS.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## XML-RPC for PHP version 4.XX - unreleased
1+
## XML-RPC for PHP version 4.10.2 - 2024/04/14
22

33
* fixed: allow `Server` subclasses to use their own Parser to determine the Request's charset
44

@@ -11,6 +11,8 @@
1111
- a `methodResponse` element without either `fault` or `params`
1212
- a `methodResponse` element with a `params` child which does not have a single `param`
1313

14+
* improved: test on php 8.3
15+
1416

1517
## XML-RPC for PHP version 4.10.1 - 2023/02/22
1618

doc/manual/phpxmlrpc_manual.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= XML-RPC for PHP User Manual
22
Gaetano Giunta; Edd Dumbill
3-
4.10.1
3+
4.10.2
44
:keywords: xml-rpc, xml, rpc, webservices, http
55
:title-page:
66
:toc:
@@ -1102,7 +1102,7 @@ string.
11021102

11031103
==== $xmlrpcVersion
11041104

1105-
PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.10.1"
1105+
PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.10.2"
11061106

11071107
The string representation of the version number of the PHPXMLRPC library in use. It is used by the Client for
11081108
building the User-Agent HTTP header that is sent with every request to the server. You can change its value if you need

src/PhpXmlRpc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class PhpXmlRpc
119119
/**
120120
* @var string
121121
*/
122-
public static $xmlrpcVersion = "4.10.1";
122+
public static $xmlrpcVersion = "4.10.2";
123123

124124
/**
125125
* @var int

0 commit comments

Comments
 (0)