* [relation] Allow fields names to be passed to Relation.get method. (93caa77)
* Add Model.execute_function and Model.call_procedure methods. (35215b3)
* Switch development status to beta. (74d3c67)
* [test] Don't reuse instances of Relation objects in tests. (0e137ce)
* [repr] Fix duplicates in unique constraints. Update README. (a91678e)
New features
* You can now trigger the execution of PostgreSQL stored procedures and
functions by using `Model.execute_fonction` and `Model.call_procedure` methods.
* You can now pass fields names to The `Relation.get` method:
py
gaston = Person(last_name='Lagaffe', first_name='Gaston').get('id')