diff --git a/NEWS.md b/NEWS.md index c482c64..ea22992 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -## XML-RPC for PHP version 4.10.1 - unreleased +## XML-RPC for PHP version 4.10.1 - 2023/02/22 * fixed: class autoloading got broken in rel 4.10.0 for users of the legacy API (issue #111) @@ -10,6 +10,7 @@ * fixed: declare the library not to be compatible with old versions of 'phpxmlrpc/extras' and 'phpxmlrpc/jsonrpc' + ## XML-RPC for PHP version 4.10.0 - 2023/02/11 * changed: the minimum php version required has been increased to 5.4 diff --git a/doc/manual/phpxmlrpc_manual.adoc b/doc/manual/phpxmlrpc_manual.adoc index 5ac5aba..9e94fbd 100644 --- a/doc/manual/phpxmlrpc_manual.adoc +++ b/doc/manual/phpxmlrpc_manual.adoc @@ -1,6 +1,6 @@ = XML-RPC for PHP User Manual Gaetano Giunta; Edd Dumbill -4.10.0 +4.10.1 :keywords: xml-rpc, xml, rpc, webservices, http :title-page: :toc: @@ -1102,7 +1102,7 @@ string. ==== $xmlrpcVersion - PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.10.0" + PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion = "4.10.1" 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 diff --git a/src/PhpXmlRpc.php b/src/PhpXmlRpc.php index cb0e404..ce9a07a 100644 --- a/src/PhpXmlRpc.php +++ b/src/PhpXmlRpc.php @@ -119,7 +119,7 @@ class PhpXmlRpc /** * @var string */ - public static $xmlrpcVersion = "4.10.0"; + public static $xmlrpcVersion = "4.10.1"; /** * @var int diff --git a/taskfile b/taskfile index a90efb6..67c86dc 100755 --- a/taskfile +++ b/taskfile @@ -47,7 +47,7 @@ function remove_debugger_visualeditor() { if [ -d "${ROOT_DIR}/debugger/jsxmlrpc" ]; then rm -rf "${ROOT_DIR}/debugger/jsxmlrpc"; fi } -# arg: $TAG. Replaces the lib version tag in all files (soutrce and docs) known to use it +# arg: $TAG. Replaces the lib version tag in all files (source and docs) known to use it function tag_code() { TAG="$1" if [ -z "${TAG}" ]; then