Skip to content

Commit

Permalink
Bump version, README for 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shacker committed Apr 9, 2019
1 parent e7655cc commit fb94fdb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

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",
Expand Down
3 changes: 3 additions & 0 deletions todo/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit fb94fdb

Please sign in to comment.