- Adds support for relations defined via database-level foreign keys.
- Backwards incompatible: Changes the relations definitions to support both
dictionary keys and object attributes instead of only dictionary keys. Change
existing code from::
Relation(
...
attrs=['title'],
),
to::
Relation(
...
keys=['title'],
),
- Move from setup.py to setup.cfg for purely declarative package definitions.