------------------
*Bug fix:*
- Removed duplicated :class:`~factory.alchemy.SQLAlchemyModelFactory` lurking in :mod:`factory`
(:pr:`83`)
- Properly handle sequences within object inheritance chains.
If ``FactoryA`` inherits from ``FactoryB``, and their associated classes
share the same link, sequence counters will be shared (:issue:`93`)
- Properly handle nested :class:`~factory.SubFactory` overrides
*New:*
- The :class:`~factory.django.DjangoModelFactory` now supports the ``FACTORY_FOR = 'myapp.MyModel'``
syntax, making it easier to shove all factories in a single module (:issue:`66`).
- Add :meth:`factory.debug()` helper for easier backtrace analysis
- Adding factory support for mongoengine with :class:`~factory.mongoengine.MongoEngineFactory`.