Skip to content

Commit 50de94a

Browse files
committed
Release
1 parent 2778ad8 commit 50de94a

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
before_install:
2121
- pip install flake8
2222
script:
23-
- flake8 lib/tri tests setup.py
23+
- flake8 lib/ tests setup.py
2424

2525
- stage: test
2626

HISTORY.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
---------
33

4+
6.1.0 (2019-10-14)
5+
~~~~~~~~~~~~~~~~~~
6+
7+
* Bumped dependency for tri.declarative
8+
9+
* Bumped dependency for tri.form
10+
11+
412
6.0.0 (2019-06-14)
513
~~~~~~~~~~~~~~~~~~
614

lib/tri_query/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161

6262
# TODO: short form for boolean values? "is_us_person" or "!is_us_person"
6363

64-
__version__ = '6.0.0' # pragma: no mutate
64+
__version__ = '6.1.0'
6565

6666

6767
class QueryException(Exception):
@@ -155,7 +155,6 @@ def boolean_value_to_q(variable, op, value_string_or_f):
155155
return Variable.value_to_q(variable, op, value_string_or_f)
156156

157157

158-
@creation_ordered
159158
class Variable(RefinableObject):
160159
"""
161160
Class that describes a variable that you can search for.

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tri.declarative>= 3.0.0,< 4.0.0
1+
tri.declarative>= 4.0.0,< 5.0.0
22
tri.struct>=3.0.0,< 4.0.0
3-
tri.form>=7.0.0,< 8.0.0
3+
tri.form>=7.2.2,< 8.0.0
44
pyparsing

0 commit comments

Comments
 (0)