Skip to content

Commit bcda34a

Browse files
authored
Merge pull request #256 from Syncano/develop
Release v5.4.6
2 parents f8a3569 + 3a1cff8 commit bcda34a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

syncano/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
import os
33

44
__title__ = 'Syncano Python'
5-
__version__ = '5.4.5'
5+
__version__ = '5.4.6'
66
__author__ = "Daniel Kopka, Michal Kobus and Sebastian Opalczynski"
77
__credits__ = ["Daniel Kopka",
88
"Michal Kobus",
9-
"Sebastian Opalczynski"]
10-
__copyright__ = 'Copyright 2015 Syncano'
9+
"Sebastian Opalczynski",
10+
"Robert Kopaczewski"]
11+
__copyright__ = 'Copyright 2016 Syncano'
1112
__license__ = 'MIT'
1213

1314
env_loglevel = os.getenv('SYNCANO_LOGLEVEL', 'INFO')

syncano/models/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ class for :class:`~syncano.models.base.Object` model.
882882
LOOKUP_SEPARATOR = '__'
883883
ALLOWED_LOOKUPS = [
884884
'gt', 'gte', 'lt', 'lte',
885-
'eq', 'neq', 'exists', 'in',
885+
'eq', 'neq', 'exists', 'in', 'nin',
886886
'near', 'is', 'contains',
887887
'startswith', 'endswith',
888888
'contains', 'istartswith',

0 commit comments

Comments
 (0)