Skip to content

Commit 617eaad

Browse files
committed
chore: Bump version to 0.2.5 :bowtie:
1 parent 88e1c05 commit 617eaad

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

graphene_mongo/fields.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,5 @@ def chained_resolver(self, resolver, root, info, **args):
188188

189189
def get_resolver(self, parent_resolver):
190190
super_resolver = self.resolver or parent_resolver
191-
# print('super_resolver', super_resolver)
192191
resolver = partial(self.chained_resolver, super_resolver)
193192
return partial(self.connection_resolver, resolver, self.type)

graphene_mongo/tests/test_relay_query.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,9 @@ class Query(graphene.ObjectType):
176176
}
177177
}
178178

179-
# print(query, expected)
180179
schema = graphene.Schema(query=Query)
181180
result = schema.execute(query)
182181
assert not result.errors
183-
# import json
184-
# print(json.dumps(result.data['reporters']))
185182
assert result.data['reporters'] == expected['reporters']
186183

187184

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='graphene-mongo',
5-
version='0.2.4',
5+
version='0.2.5',
66

77
description='Graphene Mongoengine integration',
88
long_description=open('README.rst').read(),

0 commit comments

Comments
 (0)