Subject: | Clarify how to set 1.0 version |
Please extend the docs to point out that the argument to the ->version method is a string, not a
number.
In order to use v1.0, you must do $client->version('1.0'), not $client->version(1.0), as the code
does
if ($obj->{version} eq '1.0') {
and will then insert "version":"1", which violates the 1.0 spec.