Made ManagerUtilsQuerySet part of the public api. It can now be imported directly from manager_utils
0.3
Added the id_dict method to the manager utils package. This provides the ability to retrieve a dictionary of models keyed on their ID
0.2.1
Updates the setup.py file so that dependency_links are properly included
0.2
Added a post_bulk_operation signal that is emitted when any bulk operation occurs (update, bulk_create, bulk_update)
0.1
Django manager utils 0.1 includes the following functions: - single: Access a single object of a table or queryset - get_or_none: Perform a get but return none if the object doesn't exist - upsert: Perform an update or do an insert if the object doesn't exist - bulk_update: Update fields of a list of models