diff --git a/README.md b/README.md index 69be81b..91e6e55 100644 --- a/README.md +++ b/README.md @@ -327,6 +327,7 @@ Comment.smart_query( }).all() ``` +> ** New in 0.2.3 ** > In real world, you may need to "smartly" apply filters/sort/eagerload to any arbitrary query. > And you can do this with standalone `smart_query` function: > ```python @@ -504,7 +505,7 @@ Child.columns # before it returned ['some_prop'] # now it returns ['id', 'some_prop'] ``` -### v0.2.2 +### v0.2.3 Fixed bug in [`ReprMixin`](sqlalchemy_mixins/repr.py): it [crashed](http://www.qopy.me/8UgySS2DTNOScdef_IuqAw) for objects without ID (newly created ones, not added yet to the session). ### v0.2.3 diff --git a/setup.py b/setup.py index 5ef8bfb..b94ba68 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def requirements(): return [line.rstrip('\n') for line in open(filename).readlines()] setup(name='sqlalchemy_mixins', - version='0.2.2', + version='0.2.3', description='Active Record, Django-like queries, nested eager load ' 'and beauty __repr__ for SQLAlchemy', url='https://github.com/absent1706/sqlalchemy-mixins',