Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
absent1706 committed Nov 16, 2017
1 parent 346d5e4 commit 723c90a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 723c90a

Please sign in to comment.