New features in this release: - Possibility to create relationships with non-versioned models
Bugfixes: - Foreign key relationships now work as intended (returning historic versions), reported in 45
1.4.1
As described in PR 44, this release's focus is mainly meant to keep the number of DB queries constant when cloning objects including M2M fields. Previously, the complexity was O(n) with n being the number of M2M relations. Thanks to raphaelm complexity could be fixed to a constant value (so, O(1)).
1.4.0
This release covers PRs 39 and 40. It enforces lowercase DB table column names and a correct DB namespace.
!!!DBs created with prior versions (<1.4.0) of CleanerVersion will not be compatible with this and future versions (>= 1.4.0)!!!
1.3.0
Assignment of absolute lists to M2M related properties is now possible. E.g.: up to now, only assignments like "author.books.add(book1)" were possible. With this feature, assignments like "author.books = [book1, book2, book3]" are possible.