Features
- `client.operate_ordered(ns, set, key)` function which performs multiple bin operations on a record with a given key,
with the results being returned as a list of (bin-name, result) tuples. _CLIENT-651_
Fixes
- Wrong error message for empty Lua file registration. Now returns AEROSPIKE_ERR_LUA_FILE_NOT_FOUND with a message stating the file is empty. _CLIENT-664_
- Allow integer values for aerocircle queries _CLIENT-688_
- Fix memory leak in operate method when using Unicode Strings. _CLIENT-690_
- Incorporate [PR](https://github.com/aerospike/aerospike-client-python/pull/110) for typo fix in README.rst from raftelti
- Incorporate [PR](https://github.com/aerospike/aerospike-client-python/pull/100) for scan apply fix from hawka to allow empty py_args to `client.can_apply()`
- Incorporate [PR](https://github.com/aerospike/aerospike-client-python/pull/113) to terminate a scan if callback raises an exception from RonRothman