Skip to content

Commit

Permalink
bump to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidleeplaysmart committed Mar 28, 2018
1 parent a4ef360 commit 5269405
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions queryfilter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
from .numberfilters import NumberRangeFilter
from .birthdayfilters import BirthdayDateRangeFilter

from .schemas import (
TextFilterQueryType, NumberRangeFilterQueryType,
SelectStringFilterQueryType, SelectFloatFilterQueryType,
BirthFilterQueryType
)

__all__ = [
# Main interface
'QueryFilter',
Expand All @@ -26,4 +32,11 @@
'SelectFilter',
'NumberRangeFilter',
'BirthdayDateRangeFilter',

# Default GraphQL schemas
'TextFilterQueryType',
'NumberRangeFilterQueryType',
'SelectStringFilterQueryType',
'SelectFloatFilterQueryType',
'BirthFilterQueryType'
]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name="queryfilter",
version="0.2.3",
version="0.3.0",
description=("Allow same query interface to be shared between Django ORM,"
"SQLAlchemy, and GraphQL backend."),
long_description=open(os.path.join(source_root, "README.rst")).read(),
Expand Down

0 comments on commit 5269405

Please sign in to comment.