Commit 96a5db4d authored by Bram Schoenmakers's avatar Bram Schoenmakers

Version bump and update changelog.

parent 4a245b12
0.3
---
* 'edit' subcommand accepts a list of numbers or an expression to select which
items to edit. (Jacek Sowiński).
* The commands 'del', 'do', 'pri' and 'postpone' can operate on multiple todo
items at once. (Jacek Sowiński)
* A new 'ical' subcommand that outputs in the iCalendar format.
* New configuration option: `hide_tags` to hide certain tags from the `ls`
output. Multiple tags can be specified separated by commas. By default, `p`,
`id` and `ical` are hidden.
* Properly complete todo items with invalid recurrence patterns (`rec` tag).
* Fix assignment of dependency IDs: in some cases two distinct todos get the
same dependency ID.
Big thanks to Jacek for his contributions in this release.
0.2
---
* A new 'edit' subcommand to launch an editor with the configured todo.txt file.
* A new `edit` subcommand to launch an editor with the configured todo.txt file.
* Introduced textual identifiers in addition to line numbers.
Line numbers are still the default, textual identifiers can be enabled with
the option 'identifiers = text' in the configuration file (see topydo.conf).
the option `identifiers = text` in the configuration file (see topydo.conf).
The advantage of these identifiers is that they are less prone to changes when
something changes in the todo.txt file. For example, identifiers are much more
likely to remain the same when completing a todo item (and archiving it). With
......@@ -15,7 +32,7 @@
Sowiński).
* Multiple items can be marked as complete or deleted at once.
* Added option to automatically add the projects of the parent todo item when
adding a child todo item. Enable append_parent_projects in topydo.conf.
adding a child todo item. Enable `append_parent_projects` in topydo.conf.
* `topydo help` shows a list of available subcommands. Moreover, you can run
`topydo help <subcommand>` as well.
* Let setuptools provide a `topydo` executable.
......
......@@ -3,7 +3,7 @@ from setuptools import setup
setup(
name = "topydo",
packages = ["topydo", "topydo.lib", "topydo.cli"],
version = "0.2",
version = "0.3",
description = "A command-line todo list application using the todo.txt format.",
author = "Bram Schoenmakers",
author_email = "me@bramschoenmakers.nl",
......
""" Version of Topydo. """
VERSION = '0.2'
VERSION = '0.3'
LICENSE = """Copyright (C) 2014 Bram Schoenmakers
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment