Features
- Allow for a `None` set value for index creation methods. Support scans and queries against a namespace (with the set given as `None`). (AER-3462)
- Consistent [Unicode Handling](https://pythonhosted.org/aerospike/client.html#unicode-handling). Both str and unicode values are converted by the client into UTF-8 encoded strings for storage on the aerospike server. Read methods such as get(), query(), scan() and operate() will return that data as UTF-8 encoded str values. To get a unicode you will need to manually decode. **Note: this is a change in how string values are returned.**
- Fixed errors in the example scripts.
Fixes
- Fixed Issue 49 (AER-3537)
- Fixed a segfault which happened while scanning a namespace with `None` given for the set. (AER-3464)
- Fixed Issue 50 - test harness skips running security methods against community edition.