Commit 013fe700 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Bump version

parent 969260a9
......@@ -23,6 +23,7 @@ A major release, introducing a new user interface (TUI). Special thanks go to
* Fix: dependency ID creation with orphan todo items.
* Fix: crash after completing/deleting an edited item.
* Fix: crash after completing an item that got a new dependency with `dep add`
* Fix: crash when archive filename is empty (fixed by @mruwek).
* Change: a new tag value with an existing key can be added with the tag
subcommand (thanks to @MinchinWeb)
......@@ -32,6 +33,9 @@ A major release, introducing a new user interface (TUI). Special thanks go to
* Known issue: color blocks are not shown in `ls` output in the column UI.
* Misc: topydo also has its own website at topydo.org. All commands and
features are documented there.
0.9
---
......
......@@ -24,7 +24,7 @@ setup(
name = "topydo",
packages = find_packages(exclude=["test"]),
version = find_version('topydo', 'lib', 'Version.py'),
description = "A command-line todo list application using the todo.txt format.",
description = "A powerful todo.txt application for the console",
author = "Bram Schoenmakers",
author_email = "bram@topydo.org",
url = "https://www.topydo.org",
......@@ -58,11 +58,14 @@ setup(
"Topic :: Utilities",
],
long_description = """\
topydo is a todo list application using the todo.txt format. It is heavily inspired by the todo.txt CLI by Gina Trapani. This tool is actually a merge between the todo.txt CLI and a number of extensions that I wrote on top of the CLI. These extensions are:
topydo is a powerful and customizable todo.txt application for the console, inspired by the todo.txt CLI by Gina Trapani.
Highlights of the additional features it provides:
* Set due and start dates;
* Multiple UIs (CLI, prompt and a column-based TUI);
* Custom sorting;
* Dealing with tags;
* Manage tags;
* Maintain dependencies between todo items;
* Allow todos to recur;
* Some conveniences when adding new items (e.g. adding creation date and use relative dates)
......
""" Version of Topydo. """
VERSION = '0.9'
VERSION = '0.10'
LICENSE = """Copyright (C) 2014-2015 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