Skip to content

Commit ede1b63

Browse files
committed
tag for release
1 parent d6f0633 commit ede1b63

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## XML-RPC for PHP version 4.10.4 - 2024/06/27
2+
3+
* fixed: Response returned from the library in case of HttpException did not have set the correct `status_code` member var
4+
5+
16
## XML-RPC for PHP version 4.10.3 - 2024/04/24
27

38
* fixed: avoid emitting warnings when parsing some classes of malformed XML (issue #116)

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.3
3+
4.10.4
44
:keywords: xml-rpc, xml, rpc, webservices, http
55
:title-page:
66
:toc:
@@ -1117,7 +1117,7 @@ string.
11171117

11181118
==== $xmlrpcVersion
11191119

1120-
PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.10.3"
1120+
PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.10.4"
11211121

11221122
The string representation of the version number of the PHPXMLRPC library in use. It is used by the Client for
11231123
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.3";
122+
public static $xmlrpcVersion = "4.10.4";
123123

124124
/**
125125
* @var int

0 commit comments

Comments
 (0)