Skip to content

Commit

Permalink
tag for release
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Jun 27, 2024
1 parent d6f0633 commit ede1b63
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## XML-RPC for PHP version 4.10.4 - 2024/06/27

* fixed: Response returned from the library in case of HttpException did not have set the correct `status_code` member var


## XML-RPC for PHP version 4.10.3 - 2024/04/24

* fixed: avoid emitting warnings when parsing some classes of malformed XML (issue #116)
Expand Down
4 changes: 2 additions & 2 deletions doc/manual/phpxmlrpc_manual.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= XML-RPC for PHP User Manual
Gaetano Giunta; Edd Dumbill
4.10.3
4.10.4
:keywords: xml-rpc, xml, rpc, webservices, http
:title-page:
:toc:
Expand Down Expand Up @@ -1117,7 +1117,7 @@ string.

==== $xmlrpcVersion

PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.10.3"
PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.10.4"

The string representation of the version number of the PHPXMLRPC library in use. It is used by the Client for
building the User-Agent HTTP header that is sent with every request to the server. You can change its value if you need
Expand Down
2 changes: 1 addition & 1 deletion src/PhpXmlRpc.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class PhpXmlRpc
/**
* @var string
*/
public static $xmlrpcVersion = "4.10.3";
public static $xmlrpcVersion = "4.10.4";

/**
* @var int
Expand Down

0 comments on commit ede1b63

Please sign in to comment.