Skip to content

Commit 05c8403

Browse files
committed
Merge branch 'develop'
2 parents 9de661b + e0d5a3f commit 05c8403

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '1.3.0'
54+
version = '2.2.0'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '1.3.0'
56+
release = '2.2.0'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

docs/index.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Welcome to tasklib's documentation!
44
tasklib is a Python library for interacting with taskwarrior_ databases, using
55
a queryset API similar to that of Django's ORM.
66

7-
Supports Python 2.7, 3.4 - 3.8 with taskwarrior 2.1.x and above.
7+
Supports Python 3.5 and above, with taskwarrior 2.1.x and above.
88
Older versions of taskwarrior are untested and may not work.
99

1010
Requirements
@@ -21,7 +21,7 @@ Install via pip (recommended)::
2121

2222
Or clone from github::
2323

24-
git clone https://github.com/robgolding63/tasklib.git
24+
git clone https://github.com/robgolding/tasklib.git
2525
cd tasklib
2626
python setup.py install
2727

@@ -212,7 +212,7 @@ Tasks can also be filtered using raw commands, like so::
212212
['Upgrade Ubuntu Server']
213213

214214
Although this practice is discouraged, as by using raw commands you may lose
215-
some of the portablility of your commands over different TaskWarrior versions.
215+
some of the portability of your commands over different TaskWarrior versions.
216216

217217
However, you can mix raw commands with keyword filters, as in the given example::
218218

@@ -306,7 +306,7 @@ Dealing with dates and time
306306

307307
Any timestamp-like attributes of the tasks are converted to timezone-aware
308308
datetime objects. To achieve this, Tasklib leverages ``pytz`` Python module,
309-
which brings the Olsen timezone databaze to Python.
309+
which brings the Olsen timezone database to Python.
310310

311311
This shields you from annoying details of Daylight Saving Time shifts
312312
or conversion between different timezones. For example, to list all the
@@ -330,7 +330,7 @@ You can also use simple dates when filtering:
330330
In such case, a 00:00:00 is used as the time component.
331331

332332
Of course, you can use datetime naive objects when initializing Task object
333-
or assigning values to datetime atrributes:
333+
or assigning values to datetime attributes:
334334

335335
>>> t = Task(tw, description="Buy new shoes", due=date(2015,2,5))
336336
>>> t['due']
@@ -344,7 +344,7 @@ in Python, this can cause some unexpected behaviour:
344344

345345
>>> from datetime import datetime
346346
>>> now = datetime.now()
347-
>>> t = Task(tw, description="take out the trash now")
347+
>>> t = Task(tw, description="take out the trash now")
348348
>>> t['due'] = now
349349
>>> now
350350
datetime.datetime(2015, 2, 1, 19, 44, 4, 770001)
@@ -401,7 +401,7 @@ For the list of acceptable formats and keywords, please consult:
401401
* http://taskwarrior.org/docs/dates.html
402402
* http://taskwarrior.org/docs/named_dates.html
403403

404-
However, as each such assigment involves call to 'task calc' for conversion,
404+
However, as each such assignment involves call to 'task calc' for conversion,
405405
it might cause some performance issues when assigning strings to datetime
406406
attributes repeatedly, in a automated manner.
407407

@@ -572,8 +572,8 @@ We can also speficy UDAs as arguments in the TaskFilter::
572572
Syncing
573573
-------
574574

575-
If you have configurated the needed config variables in your .taskrc, syncing
576-
is as easy as::
575+
If you have configured the required configuration variables in your .taskrc,
576+
syncing is as easy as::
577577

578578
>>> tw = TaskWarrior()
579579
>>> tw.execute_command(['sync'])

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.1.1'
5+
version = '2.2.0'
66

77
try:
88
import importlib

0 commit comments

Comments
 (0)