0.0.16
Major update to use RawQuerySet rather than using cursor. The benefit is that you can use the resulting RawQuerySet right away without having to convert it. e.g.: x.ancestors_raw()
Otherwise, the raw queryset is converted automatically into a true QuerySet. e.g.: x.ancestors()
Several other small improvements in naming and functionality.