--------------------------------------------------------------
* Rearranged json module import order.
New order is cjson > simplejson > json > django.util.somplejson
* _Backwards incompatible change:
Have to instantiate AMQPConnection object before passing
it to consumers/publishers. e.g before when you did
>>> consumer = Consumer(connection=DjangoAMQPConnection)
you now have to do
>>> consumer = Consumer(connection=DjangoAMQPConnection())
or sometimes you might even want to share the same connection with
publisher/consumer.