Skip to content

Commit 5608030

Browse files
committed
Merge branch 'develop' into master
2 parents 05c8403 + 3d7950a commit 5608030

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ tasklib
1010
tasklib is a Python library for interacting with taskwarrior_ databases, using
1111
a queryset API similar to that of Django's ORM.
1212

13-
Supports Python 3.5 and above, with taskwarrior 2.1.x and above.
14-
Older versions of taskwarrior are untested and may not work.
15-
1613
Requirements
1714
------------
1815

16+
* Python 3.5 or above
1917
* taskwarrior_ v2.1.x or above.
2018

19+
Older versions of taskwarrior are untested and may not work.
20+
2121
Installation
2222
------------
2323

@@ -32,7 +32,7 @@ tasklib has a similar API to that of Django's ORM::
3232

3333
>>> from tasklib import TaskWarrior
3434

35-
>>> tw = TaskWarrior('/home/rob/.task')
35+
>>> tw = TaskWarrior('~/.task')
3636
>>> tasks = tw.tasks.pending()
3737
>>> tasks
3838
['Tidy the house', 'Learn German']

setup.py

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

33
install_requirements = ['pytz', 'tzlocal']
44

5-
version = '2.2.0'
5+
version = '2.2.1'
66

77
try:
88
import importlib

tasklib/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
from .backends import TaskWarrior
22
from .task import Task
33
from .serializing import local_zone
4+
5+
__version__ = '2.2.1'

0 commit comments

Comments
 (0)