From 4cf96107aeb02846b96207f32a8ff1627d4ad5e1 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Thu, 11 Apr 2019 08:26:46 -0400 Subject: [PATCH] [tasks] Document version added --- docs/ext/tasks/index.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/ext/tasks/index.rst b/docs/ext/tasks/index.rst index aebb7f16b..94d1320da 100644 --- a/docs/ext/tasks/index.rst +++ b/docs/ext/tasks/index.rst @@ -1,6 +1,8 @@ ``discord.ext.tasks`` -- asyncio.Task helpers ==================================================== +.. versionadded:: 1.1.0 + One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for: - How do I handle :exc:`asyncio.CancelledError`?