Skip to content

Commit 06b9d72

Browse files
committed
tag for release
1 parent d4814b5 commit 06b9d72

File tree

10 files changed

+14
-9
lines changed

10 files changed

+14
-9
lines changed

NEWS.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## XML-RPC for PHP version 4.11.1 - 2025/1/17
2+
3+
* fixed: removed one warning emitted by the Server on php 8.4 and later (issue #125, thanks @ziegenberg)
4+
5+
16
## XML-RPC for PHP version 4.11.0 - 2024/9/7
27

38
* new: added new Client option `Client::OPT_EXTRA_HEADERS`, useful to set custom HTTP headers

debugger/action.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @author Gaetano Giunta
4-
* @copyright (C) 2005-2024 G. Giunta
4+
* @copyright (C) 2005-2025 G. Giunta
55
* @license code licensed under the BSD License: see file license.txt
66
*
77
* @todo switch params for http compression from 0,1,2 to values to be used directly

debugger/common.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @author Gaetano Giunta
4-
* @copyright (C) 2005-2024 G. Giunta
4+
* @copyright (C) 2005-2025 G. Giunta
55
* @license code licensed under the BSD License: see file license.txt
66
*
77
* Parses GET/POST variables

debugger/controller.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @author Gaetano Giunta
4-
* @copyright (C) 2005-2024 G. Giunta
4+
* @copyright (C) 2005-2025 G. Giunta
55
* @license code licensed under the BSD License: see file license.txt
66
*
77
* @todo add links to documentation from every option caption

demo/server/proxy.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* - usage of multiple signatures for one xml-rpc method
1313
*
1414
* @author Gaetano Giunta
15-
* @copyright (C) 2006-2024 G. Giunta
15+
* @copyright (C) 2006-2025 G. Giunta
1616
* @license code licensed under the BSD License: see file license.txt
1717
*/
1818

doc/manual/phpxmlrpc_manual.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ string.
11191119

11201120
==== $xmlrpcVersion
11211121

1122-
PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.11.0"
1122+
PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.11.1"
11231123

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

extras/benchmark.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Benchmarking suite for the PHPXMLRPC lib.
44
*
55
* @author Gaetano Giunta
6-
* @copyright (c) 2005-2024 G. Giunta
6+
* @copyright (C) 2005-2025 G. Giunta
77
* @license code licensed under the BSD License: see file license.txt
88
*
99
* @todo add a check for response ok in call testing

extras/verify_compat.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Verify compatibility level of current php install with php-xmlrpc lib.
44
*
55
* @author Gaetano Giunta
6-
* @copyright (C) 2006-2024 G. Giunta
6+
* @copyright (C) 2006-2025 G. Giunta
77
* @license code licensed under the BSD License: see file license.txt
88
*
99
* @todo add a test for php output buffering?

src/PhpXmlRpc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class PhpXmlRpc
119119
/**
120120
* @var string
121121
*/
122-
public static $xmlrpcVersion = "4.11.0";
122+
public static $xmlrpcVersion = "4.11.1";
123123

124124
/**
125125
* @var int

tests/phpunit_coverage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Used to serve back the server-side code coverage results to phpunit-selenium
44
*
5-
* @copyright (C) 2007-2024 G. Giunta
5+
* @copyright (C) 2007-2025 G. Giunta
66
* @license code licensed under the BSD License: see file license.txt
77
**/
88

0 commit comments

Comments
 (0)