From 5805cf52ad5c3d41904027d45c15e94bc7fed543 Mon Sep 17 00:00:00 2001 From: Scot Hacker Date: Sun, 8 Apr 2018 00:58:32 -0700 Subject: [PATCH] Increment version in readme --- index.md | 2 ++ todo/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/index.md b/index.md index 269ff69..9c043f7 100644 --- a/index.md +++ b/index.md @@ -166,6 +166,8 @@ The previous `tox` system was removed with the v2 release, since we no longer ai # Version History +**2.0.1** April 2018: Refactored "toggle done" and "delete" actions from list view. + **2.0** April 2018: Major project refactor, with almost completely rewritten views, templates, and todo's first real test suite. **1.6.2** Added support for unicode characters in list name/slugs. diff --git a/todo/__init__.py b/todo/__init__.py index 7949668..9ec0d94 100644 --- a/todo/__init__.py +++ b/todo/__init__.py @@ -1,7 +1,7 @@ """ A multi-user, multi-group task management and assignment system for Django. """ -__version__ = '2.0' +__version__ = '2.0.1' __author__ = 'Scot Hacker' __email__ = 'shacker@birdhouse.org'