Patches Rubydora::RestApiClient
to not read file-like object into string when adding or modifying datastream content. This helps greatly in handling large files.
Previously, rubydora read the entire file content into a string
and passed the string to rest-client, so the original file remained open.
Since rest-client
closes the file, the changed methods alter the state
of passed in file/io objects. Hence, the major version bump.