diff --git a/README.md b/README.md index 31124f4..472d5e7 100644 --- a/README.md +++ b/README.md @@ -299,6 +299,8 @@ django-todo uses pytest exclusively for testing. The best way to run the suite i ## Version History +**2.4.0** Implement optional file attachments on tasks + **2.3.2** Update setup.py metadata **2.3.1** Improve error handling for badly formatted or non-existent CSV uploads. diff --git a/setup.py b/setup.py index a816258..d1abd2b 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ with open(path.join(here, "README.md"), encoding="utf-8") as f: setup( name="django-todo", - version="2.3.2", + version="2.4.0", description="A multi-user, multi-group task management and assignment system for Django.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/todo/tests/test_utils.py b/todo/tests/test_utils.py index 4cc0008..48f3149 100644 --- a/todo/tests/test_utils.py +++ b/todo/tests/test_utils.py @@ -54,3 +54,6 @@ def test_send_email_to_thread_participants(todo_setup, django_user_model, email_ assert "u1@example.com" in mail.outbox[0].recipients() assert "u3@example.com" in mail.outbox[0].recipients() assert "u4@example.com" in mail.outbox[0].recipients() + +# FIXME: Add tests for: +# Attachments: Test whether allowed, test multiple, test extensions \ No newline at end of file