------------------
This is a major release, and contains a number of backwards incompatible
changes to the API.
- Default values of optional elements are not set by default anymore (423)
- Refactor the implementation of wsdl:arrayType too make the API more
pythonic (backwards incompatible).
- The call signature for Client.create_message() was changed. It now requires
the service argument:
``Client.create_message(service, operation_name, *args, **kwargs)``
- Choice elements now only work with keyword arguments and raise an exception
if positional arguments are passed (439)
- Implement initial multiref support for SOAP RPC (326). This was done using
really good real-world tests from vstoykov (thanks!)
- Fix exception on empty SOAP response (442)
- Fix XSD default values for boolean types (Bartek Wójcicki, 386)