Features
- Upgraded to C client [3.1.22](http://www.aerospike.com/download/client/c/notes.html#3.1.22).
- Support for the [batch-index API](https://www.aerospike.com/docs/guide/batch.html#server-configuration). _AER-3908_
- Batch methods are changing in a **non-backward compatible** way: in order to support batch-reads from multiple namespaces, [get_many](https://pythonhosted.org/aerospike/client.html#aerospike.Client.get_many), [exists_many](https://pythonhosted.org/aerospike/client.html#aerospike.Client.exists_many), and [select_many](https://pythonhosted.org/aerospike/client.html#aerospike.Client.select_many) now return a _list_ of records, each fitting the (key, metadata, bins) [record tuple](https://pythonhosted.org/aerospike/client.html#aerospike-record-tuple) format.
- Added [job_info](https://pythonhosted.org/aerospike/client.html#aerospike.Client.job_info), a unified method for tracking the status of scan and query jobs. Added corresponding [aerospike.JOB_STATUS_*](https://pythonhosted.org/aerospike/aerospike.html#aerospike-job-constants) constants.
- Deprecated [scan_info](https://pythonhosted.org/aerospike/client.html#aerospike.Client.scan_info).
- Support for secondary index record UDF ([query_apply](https://pythonhosted.org/aerospike/client.html#aerospike.Client.query_apply)). Requires a future release of the server. _AER-3981_
- Support for a native [double](https://www.aerospike.com/docs/guide/data-types.html) data type. Python [float](https://docs.python.org/2.7/library/functions.html#float) bin values will convert to and from as_double. **Requires server version >= [3.6.0](http://www.aerospike.com/download/server/notes.html#3.6.0)**. _AER-4239_
- Added the privilege [aerospike.PRIV_READ_WRITE_UDF](https://pythonhosted.org/aerospike/aerospike.html#aerospike.PRIV_READ_WRITE_UDF).
- New examples for [query_apply](https://github.com/aerospike/aerospike-client-python/blob/master/examples/client/query_apply.py) and [get_many](https://github.com/aerospike/aerospike-client-python/blob/master/examples/client/get_many.py).
- Ensure that the examples work with Aerospike Enterprise Edition. _AER-3707_
- Cleaned up and clarified documentation. Thanks tivvit for your help.
Fixes
- Fixed issue with scan without explicit set - [pull request 73](https://github.com/aerospike/aerospike-client-python/pull/73). Thanks tivvit.