- Add ``search.inenum`` and ``search.notinenum`` for performing an ``in_`` and ``not(in_)`` comparision using ``DeclarativeEnum``.
1.4.1
-------------------
- Allow ``Model.__bind_key__`` to be set at the declarative base level so that model classes can properly inherit it.
1.4.0
-------------------
- Make ``ModelBase``'s ``__table_args__`` and ``__mapper_args__`` inheritable via mixins. Thanks sethp_! - Add ``__enum_args__`` to ``DeclarativeEnum``. Thanks sethp_! - Allow enum name to be overridden when calling ``DeclarativeEnum.db_type()``. Thanks sethp_!
1.3.1
-------------------
- During ``Model.update()`` when setting a non-list relationship automatically instantiate ``dict`` values using the relationship model class.