From d7ee28d590e448513dceb5a5fd843fb265470700 Mon Sep 17 00:00:00 2001
From: ChrisLovering Configure the environment variables used by the program.
You can set them in an An async transport method for statsd communication. Bases: An async implementation of Create a new Use Useful utilities and tools for Discord bot development. Bases: A sub-class that implements many common features that Python Discord bots use. Initialise the base bot instance..env file in the project root directory. The variables are:
-
TOKEN (required): Discord bot token, with all intents enabledBOT_TOKEN (required): Discord bot token, with all intents enabledGUILD_ID (required): The guild the bot should monitorPREFIX: The prefix to use for invoking bot commands. Defaults to mentions and !ALLOWED_ROLES: A comma seperated list of role IDs which the bot is allowed to mention
StatsClientBasestatsd.client.base.StatsClientBase that supports async stat communication.
AsyncStatsClient.
asyncio.loop.create_datagram_endpoint from the loop given on init to create a socket.
Bot
Add the given cog to the bot and log the operation.
Add command as normal and then add its root aliases to the bot.
Not implemented! Re-instantiate the bot instead of attempting to re-use a closed one.
Close the Discord connection, and the aiohttp session, connector, statsd client, and resolver.
Load all the extensions within the given module and save them to self.all_extensions.
This should be ran in a task on the event loop to avoid deadlocks caused by wait_for calls.
Log the given message to #dev-log.
Set the internal guild available event when self.guild_id becomes available.
If the cache appears to still be empty (no members, no channels, or no roles), the event will not be set and guild_available_but_cache_empty event will be emitted.
@@ -438,7 +442,7 @@ will not be set and guild_available_but_cache_empty event will be eClear the internal guild available event when self.guild_id becomes unavailable.
Ping all required services on setup to ensure they are up before starting.
Remove a command/alias as normal and then remove its root aliases from the bot.
Individual root aliases cannot be removed by this function. To remove them, either remove the entire command or manually edit bot.all_commands.
@@ -473,7 +477,7 @@ To remove them, either remove the entire command or manually edit bot.all_An async init to startup generic services.
Connects to statsd, and calls
AsyncStatsClient.create_socket
@@ -487,7 +491,7 @@ and
Wait until the guild that matches the guild_id given at init is available (and the cache is ready).
The on_ready event is inadequate because it only waits 2 seconds for a GUILD_CREATE gateway event before giving up and thus not populating the cache for unavailable guilds.
@@ -502,12 +506,12 @@ gateway event before giving up and thus not populating the cache for unavailableBases: Exception
Exception class for startup errors.
An API wrapper around the Site API.
Bases: object
A wrapper for the Django Site API.
Initialize a new APIClient instance.
Close the aiohttp session.
Send a DELETE request to the site API and return the JSON response.
Equivalent to APIClient.request() with GET passed as the method.
Raise ResponseCodeError for non-OK response if an exception should be raised.
Equivalent to APIClient.request() with PATCH passed as the method.
Equivalent to APIClient.request() with POST passed as the method.
Equivalent to APIClient.request() with PUT passed as the method.
Send an HTTP request to the site API and return the JSON response.
Bases: ValueError
Raised in APIClient.request() when a non-OK HTTP response is received.
Initialize a new ResponseCodeError instance.
Return a string representation of the error.
Utilities related to custom caches.
Bases: object
LRU cache implementation for coroutines.
Once the cache exceeds the maximum size, keys are deleted in FIFO order.
An offset may be optionally provided to be applied to the coroutine’s arguments when creating the cache key.
Decorator for async cache.
Initialise a new AsyncCache instance.
Clear cache instance.
Useful helper functions for interacting with various discord channel objects.
Attempt to get or fetch the given channel_id from the bots cache, and return it.
Return whether the given channel in the the category with the id category_id.
Cleans a text argument or replied message’s content.
Useful utilities and tools for Discord bot development.
Applies all common monkey patches for our bots.
discord.ext.commands.Command and discord.ext.commands.Group to support root aliases.A root_aliases keyword argument is added to these two objects, which is a sequence of alias names
@@ -353,7 +357,7 @@ that will act as top-level groups rather than being aliases of the command’s g
Return an unqualified name given a qualified module/package name.
Bases: Button
A button that can be added to a view to delete the message containing the view on click.
This button itself carries out no interaction checks, these should be done by the parent view.
@@ -348,12 +352,12 @@Delete the original message on button click.
Bases: View
A view that allows the original invoker and moderators to interact with it.
None
-
-__init__(*, allowed_users, allowed_roles, timeout=180.0, message=None)[source]#
+__init__(*, allowed_users, allowed_roles, timeout=180.0, message=None)[source]#
-
-async interaction_check(interaction)[source]#
+async interaction_check(interaction)[source]#
Ensure the user clicking the button is the view invoker, or a moderator.
- Parameters:
@@ -402,7 +406,7 @@ If None
-
-async on_timeout()[source]#
+async on_timeout()[source]#
Remove the view from self.message if set.
- Return type:
diff --git a/main/output/botcore.utils.logging.html b/main/output/botcore.utils.logging.html
index aee9b77f..7400ebb1 100644
--- a/main/output/botcore.utils.logging.html
+++ b/main/output/botcore.utils.logging.html
@@ -207,6 +207,10 @@
main
+
-
+ v8.2.0
+
+
-
v8.1.0
@@ -334,12 +338,12 @@
Common logging related functions.
-
-class CustomLogger(name, level=0)[source]#
+class CustomLogger(name, level=0)[source]#
Bases: Logger
Custom implementation of the logging.Logger class with an added trace method.
-
-trace(msg, *args, **kwargs)[source]#
+trace(msg, *args, **kwargs)[source]#
Log the given message with the severity "TRACE".
To pass exception information, use the keyword argument exc_info with a true value:
logger.trace("Houston, we have an %s", "interesting problem", exc_info=1)
@@ -363,7 +367,7 @@
-
-get_logger(name=None)[source]#
+get_logger(name=None)[source]#
Utility to make mypy recognise that logger is of type CustomLogger.
- Parameters:
diff --git a/main/output/botcore.utils.members.html b/main/output/botcore.utils.members.html
index cbe18b8b..9939c52a 100644
--- a/main/output/botcore.utils.members.html
+++ b/main/output/botcore.utils.members.html
@@ -207,6 +207,10 @@
main
+
-
+ v8.2.0
+
+
-
v8.1.0
@@ -334,7 +338,7 @@
Useful helper functions for interactin with discord.Member objects.
-
-async get_or_fetch_member(guild, member_id)[source]#
+async get_or_fetch_member(guild, member_id)[source]#
Attempt to get a member from cache; on failure fetch from the API.
- Return type:
@@ -348,7 +352,7 @@
-
-async handle_role_change(member, coro, role)[source]#
+async handle_role_change(member, coro, role)[source]#
Await the given coro with role as the sole argument.
Handle errors that we expect to be raised from
discord.Member.add_roles and discord.Member.remove_roles.
diff --git a/main/output/botcore.utils.regex.html b/main/output/botcore.utils.regex.html
index 295b5505..f7ca2fa1 100644
--- a/main/output/botcore.utils.regex.html
+++ b/main/output/botcore.utils.regex.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -334,7 +338,7 @@
Common regular expressions.
-
-DISCORD_INVITE[source]#
+DISCORD_INVITE[source]#
Regex for Discord server invites.
Warning
@@ -348,7 +352,7 @@ such as
-
-FORMATTED_CODE_REGEX[source]#
+FORMATTED_CODE_REGEX[source]#
Regex for formatted code, using Discord’s code blocks.
@@ -356,7 +360,7 @@ such as
-
-RAW_CODE_REGEX[source]#
+RAW_CODE_REGEX[source]#
Regex for raw code, not using Discord’s code blocks.
diff --git a/main/output/botcore.utils.scheduling.html b/main/output/botcore.utils.scheduling.html
index f532f102..4a98b5b4 100644
--- a/main/output/botcore.utils.scheduling.html
+++ b/main/output/botcore.utils.scheduling.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -334,7 +338,7 @@
Generic python scheduler.
-
-class Scheduler(name)[source]#
+class Scheduler(name)[source]#
Bases: object
Schedule the execution of coroutines and keep track of them.
When instantiating a Scheduler, a name must be provided. This name is used to distinguish the
@@ -348,7 +352,7 @@ the same ID used to schedule it.
Any exception raised in a scheduled task is logged when the task is done.
-
-__contains__(task_id)[source]#
+__contains__(task_id)[source]#
Return True if a task with the given task_id is currently scheduled.
- Parameters:
@@ -365,7 +369,7 @@ the same ID used to schedule it.
-
-__init__(name)[source]#
+__init__(name)[source]#
Initialize a new Scheduler instance.
- Parameters:
@@ -376,7 +380,7 @@ the same ID used to schedule it.
-
-cancel(task_id)[source]#
+cancel(task_id)[source]#
Unschedule the task identified by task_id. Log a warning if the task doesn’t exist.
- Parameters:
@@ -390,7 +394,7 @@ the same ID used to schedule it.
-
-cancel_all()[source]#
+cancel_all()[source]#
Unschedule all known tasks.
- Return type:
@@ -401,7 +405,7 @@ the same ID used to schedule it.
-
-schedule(task_id, coroutine)[source]#
+schedule(task_id, coroutine)[source]#
Schedule the execution of a coroutine.
If a task with task_id already exists, close coroutine instead of scheduling it. This
prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-used elsewhere.
@@ -420,7 +424,7 @@ prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-
-
-schedule_at(time, task_id, coroutine)[source]#
+schedule_at(time, task_id, coroutine)[source]#
Schedule coroutine to be executed at the given time.
If time is timezone aware, then use that timezone to calculate now() when subtracting.
If time is naïve, then use UTC.
@@ -443,7 +447,7 @@ prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-
-
-schedule_later(delay, task_id, coroutine)[source]#
+schedule_later(delay, task_id, coroutine)[source]#
Schedule coroutine to be executed after delay seconds.
If a task with task_id already exists, close coroutine instead of scheduling it. This
prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-used elsewhere.
@@ -465,7 +469,7 @@ prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-
-
-create_task(coro, *, suppressed_exceptions=(), event_loop=None, **kwargs)[source]#
+create_task(coro, *, suppressed_exceptions=(), event_loop=None, **kwargs)[source]#
Wrapper for creating an asyncio.Task which logs exceptions raised in the task.
If the event_loop kwarg is provided, the task is created from that event loop,
otherwise the running loop is used.
diff --git a/main/py-modindex.html b/main/py-modindex.html
index 2b8d961d..49e92ac2 100644
--- a/main/py-modindex.html
+++ b/main/py-modindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/main/search.html b/main/search.html
index d5b9c842..f32c469e 100644
--- a/main/search.html
+++ b/main/search.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/main/searchindex.js b/main/searchindex.js
index 542d308c..f3ab6500 100644
--- a/main/searchindex.js
+++ b/main/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["changelog", "development", "index", "output/botcore", "output/botcore.async_stats", "output/botcore.exts", "output/botcore.site_api", "output/botcore.utils", "output/botcore.utils.caching", "output/botcore.utils.channel", "output/botcore.utils.commands", "output/botcore.utils.interactions", "output/botcore.utils.logging", "output/botcore.utils.members", "output/botcore.utils.regex", "output/botcore.utils.scheduling"], "filenames": ["changelog.rst", "development.rst", "index.rst", "output/botcore.rst", "output/botcore.async_stats.rst", "output/botcore.exts.rst", "output/botcore.site_api.rst", "output/botcore.utils.rst", "output/botcore.utils.caching.rst", "output/botcore.utils.channel.rst", "output/botcore.utils.commands.rst", "output/botcore.utils.interactions.rst", "output/botcore.utils.logging.rst", "output/botcore.utils.members.rst", "output/botcore.utils.regex.rst", "output/botcore.utils.scheduling.rst"], "titles": ["Changelog", "Local Development & Testing", "Bot Core Project Documentation", "Botcore", "async_stats", "Exts", "site_api", "Utils", "caching", "channel", "commands", "interactions", "logging", "members", "regex", "scheduling"], "terms": {"8": 0, "2": [0, 3, 11], "0": [0, 8, 11, 12], "18th": 0, "august": 0, "2022": 0, "support": [0, 4, 7, 15], "125": 0, "bump": 0, "discord": [0, 1, 3, 5, 7, 9, 10, 13, 14], "py": 0, "stabl": 0, "releas": 0, "1": [0, 12], "16th": 0, "124": 0, "updat": 0, "botcor": [0, 1, 2, 11], "util": [0, 1, 2, 3, 8, 11, 12], "regex": [0, 3, 7], "discord_invit": [0, 14], "option": [0, 3, 4, 6, 8, 10, 11, 12, 13], "match": [0, 3], "lead": 0, "http": [0, 6, 14], "": [0, 1, 7, 8, 10, 11, 12, 14, 15], "www": 0, "27th": 0, "juli": 0, "break": 0, "110": 0, "async": [0, 3, 4, 6, 8, 9, 10, 11, 13], "rediscach": 0, "v1": 0, "rc2": 0, "bug": 0, "107": 0, "declar": 0, "aiodn": 0, "project": [0, 1], "depend": [0, 9], "add": [0, 3], "sampl": 0, "boilerpl": 0, "document": 0, "explain": 0, "how": [0, 8, 15], "develop": [0, 2, 3, 7], "bot": [0, 1, 3, 7, 9], "core": [0, 1], "108": 0, "python": [0, 1, 3, 15], "version": [0, 10], "3": 0, "10": 0, "7": 0, "5": 0, "23rd": 0, "featur": [0, 1, 3], "101": 0, "clean": [0, 10], "string": [0, 6], "referenc": 0, "messag": [0, 3, 10, 11, 12, 15], "content": [0, 6, 10], "4": 0, "17th": 0, "106": 0, "an": [0, 1, 3, 4, 6, 7, 8, 9, 12, 15], "attr": 0, "interact": [0, 3, 7, 9], "viewwithuserandrolecheck": [0, 11], "On": 0, "view": [0, 11], "timeout": [0, 11], "thi": [0, 1, 3, 7, 9, 11, 13, 14, 15], "ha": [0, 7], "its": [0, 3], "remov": [0, 3, 11], "set": [0, 1, 3, 11], "104": 0, "fix": 0, "deletemessagebutton": [0, 11], "work": [0, 1], "due": 0, "us": [0, 1, 3, 4, 6, 7, 9, 12, 13, 14, 15], "wrong": 0, "delet": [0, 6, 8, 11], "method": [0, 4, 6, 7, 12], "103": 0, "button": [0, 11], "attach": 0, "parent": [0, 11], "gener": [0, 3, 15], "onli": [0, 3], "allow": [0, 1, 3, 11], "specifi": [0, 11], "user": [0, 11], "role": [0, 1, 3, 11, 13], "9th": 0, "98": 0, "close": [0, 3, 6, 15], "botbas": [0, 3], "stat": [0, 4], "_transport": 0, "wa": [0, 9, 15], "creat": [0, 3, 4, 8, 15], "30th": 0, "june": 0, "91": 0, "miss": 0, "await": [0, 11, 13], "ping_servic": [0, 3], "some": 0, "case": 0, "pass": [0, 6, 12, 13, 15], "self": [0, 3, 11], "paramet": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15], "incorrect": 0, "docstr": 0, "member": [0, 3, 7], "handle_role_chang": [0, 13], "96": 0, "attempt": [0, 3, 9, 13], "connect": [0, 3, 4], "statsd_url": [0, 3], "when": [0, 3, 4, 6, 7, 8, 15], "i": [0, 1, 3, 6, 7, 9, 11, 12, 13, 15], "none": [0, 3, 4, 6, 7, 8, 10, 11, 12, 13, 15], "28th": 0, "93": 0, "0eb3d26": 0, "auto": 0, "mod": 0, "which": [0, 1, 7, 15], "new": [0, 1, 4, 6, 8, 15], "auto_mod": 0, "message_typ": 0, "need": [0, 1], "our": [0, 1, 7], "filter": 0, "system": [0, 1], "mai": [0, 8], "79": 0, "restor": 0, "site": [0, 6], "sphinx": 0, "multivers": 0, "make": [0, 1, 12], "avail": [0, 3], "older": 0, "doc": 0, "24th": 0, "78": 0, "4cbe8f5": 0, "permiss": [0, 9], "resolut": 0, "deal": 0, "time": [0, 15], "out": [0, 1, 11], "10th": 0, "75": 0, "invit": [0, 14], "longer": [0, 11], "return": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15], "url": [0, 3, 6], "safe": 0, "result": [0, 15], "refer": 0, "handl": [0, 13, 15], "captur": [0, 14], "all": [0, 1, 3, 4, 7, 15], "charact": 0, "up": [0, 1, 3], "whitespac": [0, 14], "6": 0, "26th": 0, "april": 0, "72": 0, "5a06fa5": 0, "notabl": 0, "one": [0, 3], "commit": 0, "dynam": 0, "extend": 0, "guild": [0, 1, 3, 13], "chunk": 0, "base": [0, 3, 4, 6, 8, 11, 12, 15], "number": 0, "so": [0, 1, 7], "should": [0, 1, 3, 6, 11], "actual": 0, "now": [0, 1, 15], "25th": 0, "69": 0, "get": [0, 6, 9, 13], "21st": 0, "68": 0, "correct": [0, 1], "pyproject": [0, 1], "toml": [0, 1], "directli": 0, "main": 0, "don": [0, 15], "t": [0, 10, 15], "load": [0, 1, 3, 7], "modul": [0, 3, 7, 15], "start": [0, 3, 15], "_": 0, "66": 0, "each": 0, "cog": [0, 3, 5], "own": 0, "task": [0, 3, 15], "avoid": [0, 3], "singl": 0, "crash": 0, "entir": [0, 3], "process": 0, "20th": 0, "65": 0, "unqualifi": [0, 7], "namespac": [0, 15], "manipul": 0, "extens": [0, 3], "19th": 0, "64": 0, "987235d": 0, "revert": 0, "chang": [0, 1], "help": [0, 1], "command": [0, 1, 3, 7, 9], "behaviour": 0, "broke": 0, "custom": [0, 8, 12], "pagin": 0, "also": [0, 7, 11], "basic": [0, 11], "forum": 0, "channel": [0, 3, 7], "63": 0, "api_cli": [0, 3], "__init__": [0, 3, 4, 6, 8, 11, 15], "site_api": [0, 2, 3], "apicli": [0, 3, 6], "instanc": [0, 3, 6, 8, 9, 12, 15], "61": 0, "reconnect": 0, "redi": 0, "session": [0, 3, 6], "setup": [0, 3], "5th": 0, "56": 0, "move": 0, "creation": 0, "asyncio": [0, 4, 15], "event": [0, 3, 4, 15], "_guild_avail": 0, "within": [0, 3], "hook": 0, "deprec": 0, "notic": 0, "dummi": [0, 3], "asyncstatsdcli": 0, "befor": [0, 3, 11, 15], "real": 0, "cannot": [0, 3], "made": 0, "init": [0, 3, 4], "2nd": 0, "54": 0, "aiohttp": [0, 3, 6], "asyncresolv": 0, "42": 0, "public": 0, "statsd": [0, 3, 4], "client": [0, 3, 4], "ext": [0, 2, 3, 7, 9, 10], "sub": [0, 3], "class": [0, 3, 4, 6, 8, 11, 12, 15], "abstract": 0, "lot": 0, "logic": 0, "share": 0, "between": [0, 1], "latest": 0, "alpha": 0, "14th": 0, "march": 0, "39": 0, "migrat": 0, "back": 0, "37": 0, "log": [0, 3, 7, 13, 15], "trace": [0, 12], "import": 0, "can": [0, 1, 11, 15], "function": [0, 3, 8, 9, 12, 13, 15], "3rd": 0, "35": 0, "apply_monkey_patch": [0, 7], "februari": 0, "34": 0, "port": [0, 4], "api": [0, 6, 13], "wrapper": [0, 6, 15], "from": [0, 1, 3, 4, 6, 7, 9, 11, 13, 15], "repo": 0, "22nd": 0, "32": 0, "0a0": 0, "disnak": 0, "29": 0, "mani": [0, 3, 8], "common": [0, 1, 3, 7, 12, 14], "cach": [0, 3, 7, 9, 13], "logger": [0, 12], "schedul": [0, 3, 7], "monkei": [0, 7], "patch": [0, 6, 7], "ad": [0, 1, 7, 11, 12], "intersphinx": 0, "januari": 0, "12": 0, "code": [0, 1, 14], "block": [0, 14], "detect": 0, "decemb": 0, "2021": 0, "autogener": 0, "novemb": 0, "packag": [0, 7], "poetri": [0, 1], "lint": 0, "ci": 0, "To": [1, 3, 12], "your": 1, "ar": [1, 3, 8, 11, 14], "few": 1, "possibl": 1, "approach": 1, "instal": 1, "copi": 1, "pre": 1, "exist": [1, 15], "provid": [1, 8, 10, 15], "templat": 1, "dev": [1, 3], "folder": 1, "see": [1, 11], "below": 1, "more": 1, "info": 1, "both": 1, "what": 1, "go": 1, "them": [1, 3, 15], "you": [1, 9, 14], "ll": [1, 15], "write": 1, "might": 1, "mean": 1, "modifi": [1, 13], "ones": 1, "etc": 1, "The": [1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15], "step": 1, "most": 1, "groundwork": 1, "exact": 1, "requir": [1, 3, 15], "vari": 1, "re": [1, 3, 15], "navig": 1, "want": 1, "sir": 1, "lancebot": 1, "run": [1, 15], "pip": 1, "path": 1, "environ": 1, "root": [1, 3, 7], "directori": 1, "machin": 1, "That": 1, "contain": [1, 11, 15], "file": 1, "sure": 1, "again": 1, "git": 1, "ignor": [1, 7], "free": 1, "howev": 1, "like": 1, "m": 1, "docker": 1, "compos": 1, "d": 1, "configur": 1, "variabl": 1, "program": 1, "env": 1, "token": [1, 6], "intent": 1, "enabl": 1, "guild_id": [1, 3], "monitor": 1, "prefix": [1, 4], "invok": [1, 11], "default": 1, "mention": [1, 3], "allowed_rol": [1, 3, 11], "A": [1, 3, 6, 7, 8, 9, 11, 15], "comma": 1, "seper": 1, "list": [1, 3], "id": [1, 3, 9, 11, 15], "do": [1, 9], "anyth": 1, "reinstal": 1, "librari": 1, "includ": 1, "servic": [1, 3], "other": [1, 15], "applic": 1, "certain": 1, "subpackag": 2, "submodul": 2, "async_stat": [2, 3], "index": 2, "search": 2, "page": 2, "inform": [2, 12], "local": 2, "test": 2, "changelog": 2, "tool": [3, 7], "arg": [3, 12], "http_session": 3, "redis_sess": 3, "kwarg": [3, 6, 11, 12, 15], "sourc": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "implement": [3, 4, 8, 11, 12], "initialis": [3, 8], "int": [3, 4, 8, 9, 11, 15], "wait_until_guild_avail": 3, "clientsess": [3, 6], "redissess": 3, "async_rediscach": 3, "str": [3, 4, 6, 7, 10, 11, 12, 15], "server": [3, 14], "If": [3, 6, 11, 15], "given": [3, 4, 7, 9, 10, 12, 13, 15], "add_cog": 3, "oper": [3, 15], "type": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15], "add_command": 3, "normal": 3, "alias": [3, 7], "clear": [3, 8], "Not": 3, "instanti": [3, 11, 15], "instead": [3, 15], "connector": 3, "resolv": 3, "load_extens": 3, "save": 3, "all_extens": 3, "ran": 3, "loop": [3, 4, 15], "deadlock": 3, "caus": [3, 7], "wait_for": 3, "call": [3, 15], "log_to_dev_log": 3, "on_guild_avail": 3, "intern": [3, 7], "becom": 3, "appear": 3, "still": 3, "empti": 3, "guild_available_but_cache_empti": 3, "emit": 3, "on_guild_unavail": 3, "unavail": 3, "ping": 3, "ensur": [3, 11, 14], "thei": 3, "remove_command": 3, "name": [3, 7, 12, 15], "alia": [3, 7], "individu": 3, "either": 3, "manual": 3, "edit": 3, "all_command": 3, "setup_hook": 3, "startup": 3, "asyncstatscli": [3, 4], "create_socket": [3, 4], "wait": [3, 15], "until": [3, 14], "readi": 3, "on_readi": 3, "inadequ": 3, "becaus": 3, "second": [3, 11, 15], "guild_creat": 3, "gatewai": 3, "give": 3, "thu": 3, "popul": 3, "except": [3, 6, 12, 15], "startuperror": 3, "error": [3, 6, 7, 13], "transport": 4, "commun": 4, "host": 4, "localhost": 4, "8125": 4, "statsclientbas": 4, "abstracteventloop": [4, 15], "create_datagram_endpoint": 4, "socket": 4, "reusabl": 5, "around": 6, "site_api_url": 6, "site_api_token": 6, "session_kwarg": 6, "object": [6, 7, 8, 9, 13, 15], "django": 6, "initi": [6, 15], "authent": 6, "keyword": [6, 7, 12], "argument": [6, 7, 8, 10, 12, 13], "constructor": 6, "endpoint": 6, "raise_for_statu": 6, "true": [6, 12, 15], "send": [6, 11], "request": [6, 14], "json": 6, "respons": 6, "bool": [6, 9, 11, 15], "whether": [6, 9], "rais": [6, 9, 10, 13, 15], "ok": 6, "ani": [6, 14, 15], "extra": 6, "dict": 6, "204": 6, "No": 6, "equival": 6, "static": 6, "maybe_raise_for_statu": 6, "should_rais": 6, "responsecodeerror": 6, "non": 6, "clientrespons": 6, "check": [6, 9, 11, 15], "post": 6, "put": 6, "response_json": 6, "response_text": 6, "valueerror": 6, "receiv": [6, 9], "text": [6, 10], "__str__": 6, "represent": 6, "appli": [7, 8], "group": [7, 14], "root_alias": 7, "two": 7, "sequenc": [7, 11], "act": 7, "top": 7, "level": [7, 12], "rather": 7, "than": 7, "being": [7, 13], "It": 7, "store": [7, 8], "attribut": 7, "send_typ": 7, "403": 7, "under": 7, "heavi": 7, "cloudflar": 7, "worker": 7, "rout": 7, "thrown": 7, "qualifi": 7, "relat": [8, 12], "asynccach": 8, "max_siz": 8, "128": 8, "lru": 8, "coroutin": [8, 13, 15], "onc": 8, "exce": 8, "maximum": 8, "size": 8, "kei": 8, "fifo": 8, "order": [8, 15], "offset": 8, "__call__": 8, "arg_offset": 8, "decor": 8, "posit": 8, "callabl": [8, 13], "wrap": [8, 15], "target": 8, "item": 8, "helper": [9, 13], "variou": 9, "get_or_fetch_channel": 9, "channel_id": 9, "fetch": [9, 13], "invaliddata": 9, "unknown": 9, "httpexcept": 9, "retriev": 9, "fail": 9, "notfound": 9, "invalid": 9, "forbidden": 9, "have": [9, 12], "guildchannel": 9, "is_in_categori": 9, "category_id": 9, "categori": 9, "textchannel": 9, "clean_text_or_repli": 10, "ctx": [10, 11], "repli": 10, "context": 10, "badargu": 10, "wasn": 10, "els": 10, "style": 11, "buttonstyl": 11, "secondari": 11, "label": 11, "click": 11, "itself": 11, "carri": 11, "done": [11, 15], "callback": 11, "origin": 11, "allowed_us": 11, "180": 11, "moder": 11, "who": 11, "float": [11, 15], "last": 11, "ui": 11, "accept": 11, "input": 11, "similar": [11, 14], "after": [11, 15], "interaction_check": 11, "occur": 11, "on_timeout": 11, "customlogg": 12, "msg": 12, "sever": 12, "exc_info": 12, "valu": 12, "houston": 12, "we": [12, 13], "interest": 12, "problem": 12, "get_logg": 12, "mypi": 12, "recognis": 12, "interactin": 13, "get_or_fetch_memb": 13, "member_id": 13, "failur": 13, "indic": 13, "could": 13, "found": [13, 15], "coro": [13, 15], "sole": 13, "expect": 13, "add_rol": 13, "remove_rol": 13, "purpos": 13, "intend": 13, "regular": 14, "express": 14, "pattern": 14, "pleas": 14, "sanitis": 14, "output": 14, "someth": 14, "urllib": 14, "pars": 14, "quot": 14, "formatted_code_regex": 14, "format": 14, "raw_code_regex": 14, "raw": 14, "execut": 15, "keep": 15, "track": 15, "must": 15, "distinguish": 15, "suggest": 15, "immedi": 15, "futur": 15, "schedule_at": 15, "schedule_lat": 15, "uniqu": 15, "cancel": 15, "prematur": 15, "same": 15, "current": 15, "__contains__": 15, "task_id": 15, "hashabl": 15, "look": 15, "unschedul": 15, "identifi": 15, "warn": 15, "doesn": 15, "cancel_al": 15, "known": 15, "alreadi": 15, "prevent": 15, "unawait": 15, "elsewher": 15, "timezon": 15, "awar": 15, "calcul": 15, "subtract": 15, "na\u00efv": 15, "utc": 15, "past": 15, "datetim": 15, "delai": 15, "union": 15, "long": 15, "create_task": 15, "suppressed_except": 15, "event_loop": 15, "otherwis": 15, "typevar": 15, "task_return": 15, "tupl": 15}, "objects": {"": [[3, 0, 0, "-", "botcore"]], "botcore": [[3, 1, 1, "", "BotBase"], [3, 3, 1, "", "StartupError"], [4, 0, 0, "-", "async_stats"], [5, 0, 0, "-", "exts"], [6, 0, 0, "-", "site_api"], [7, 0, 0, "-", "utils"]], "botcore.BotBase": [[3, 2, 1, "", "__init__"], [3, 2, 1, "", "add_cog"], [3, 2, 1, "", "add_command"], [3, 2, 1, "", "clear"], [3, 2, 1, "", "close"], [3, 2, 1, "", "load_extensions"], [3, 2, 1, "", "log_to_dev_log"], [3, 2, 1, "", "on_guild_available"], [3, 2, 1, "", "on_guild_unavailable"], [3, 2, 1, "", "ping_services"], [3, 2, 1, "", "remove_command"], [3, 2, 1, "", "setup_hook"], [3, 2, 1, "", "wait_until_guild_available"]], "botcore.StartupError": [[3, 2, 1, "", "__init__"]], "botcore.async_stats": [[4, 1, 1, "", "AsyncStatsClient"]], "botcore.async_stats.AsyncStatsClient": [[4, 2, 1, "", "__init__"], [4, 2, 1, "", "create_socket"]], "botcore.site_api": [[6, 1, 1, "", "APIClient"], [6, 3, 1, "", "ResponseCodeError"]], "botcore.site_api.APIClient": [[6, 2, 1, "", "__init__"], [6, 2, 1, "", "close"], [6, 2, 1, "", "delete"], [6, 2, 1, "", "get"], [6, 2, 1, "", "maybe_raise_for_status"], [6, 2, 1, "", "patch"], [6, 2, 1, "", "post"], [6, 2, 1, "", "put"], [6, 2, 1, "", "request"]], "botcore.site_api.ResponseCodeError": [[6, 2, 1, "", "__init__"], [6, 2, 1, "", "__str__"]], "botcore.utils": [[7, 4, 1, "", "apply_monkey_patches"], [8, 0, 0, "-", "caching"], [9, 0, 0, "-", "channel"], [10, 0, 0, "-", "commands"], [11, 0, 0, "-", "interactions"], [12, 0, 0, "-", "logging"], [13, 0, 0, "-", "members"], [14, 0, 0, "-", "regex"], [15, 0, 0, "-", "scheduling"], [7, 4, 1, "", "unqualify"]], "botcore.utils.caching": [[8, 1, 1, "", "AsyncCache"]], "botcore.utils.caching.AsyncCache": [[8, 2, 1, "", "__call__"], [8, 2, 1, "", "__init__"], [8, 2, 1, "", "clear"]], "botcore.utils.channel": [[9, 4, 1, "", "get_or_fetch_channel"], [9, 4, 1, "", "is_in_category"]], "botcore.utils.commands": [[10, 4, 1, "", "clean_text_or_reply"]], "botcore.utils.interactions": [[11, 1, 1, "", "DeleteMessageButton"], [11, 1, 1, "", "ViewWithUserAndRoleCheck"]], "botcore.utils.interactions.DeleteMessageButton": [[11, 2, 1, "", "__init__"], [11, 2, 1, "", "callback"]], "botcore.utils.interactions.ViewWithUserAndRoleCheck": [[11, 2, 1, "", "__init__"], [11, 2, 1, "", "interaction_check"], [11, 2, 1, "", "on_timeout"]], "botcore.utils.logging": [[12, 1, 1, "", "CustomLogger"], [12, 4, 1, "", "get_logger"]], "botcore.utils.logging.CustomLogger": [[12, 2, 1, "", "trace"]], "botcore.utils.members": [[13, 4, 1, "", "get_or_fetch_member"], [13, 4, 1, "", "handle_role_change"]], "botcore.utils.regex": [[14, 5, 1, "", "DISCORD_INVITE"], [14, 5, 1, "", "FORMATTED_CODE_REGEX"], [14, 5, 1, "", "RAW_CODE_REGEX"]], "botcore.utils.scheduling": [[15, 1, 1, "", "Scheduler"], [15, 4, 1, "", "create_task"]], "botcore.utils.scheduling.Scheduler": [[15, 2, 1, "", "__contains__"], [15, 2, 1, "", "__init__"], [15, 2, 1, "", "cancel"], [15, 2, 1, "", "cancel_all"], [15, 2, 1, "", "schedule"], [15, 2, 1, "", "schedule_at"], [15, 2, 1, "", "schedule_later"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:exception", "4": "py:function", "5": "py:data"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "exception", "Python exception"], "4": ["py", "function", "Python function"], "5": ["py", "data", "Python data"]}, "titleterms": {"changelog": 0, "local": 1, "develop": 1, "test": 1, "option": 1, "1": 1, "2": 1, "bot": 2, "core": 2, "project": 2, "document": 2, "refer": 2, "modul": 2, "extra": 2, "botcor": 3, "subpackag": 3, "submodul": [3, 7], "async_stat": 4, "ext": 5, "site_api": 6, "util": 7, "cach": 8, "channel": 9, "command": 10, "interact": 11, "log": 12, "member": 13, "regex": 14, "schedul": 15}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx": 56}})
\ No newline at end of file
+Search.setIndex({"docnames": ["changelog", "development", "index", "output/botcore", "output/botcore.async_stats", "output/botcore.exts", "output/botcore.site_api", "output/botcore.utils", "output/botcore.utils.caching", "output/botcore.utils.channel", "output/botcore.utils.commands", "output/botcore.utils.interactions", "output/botcore.utils.logging", "output/botcore.utils.members", "output/botcore.utils.regex", "output/botcore.utils.scheduling"], "filenames": ["changelog.rst", "development.rst", "index.rst", "output/botcore.rst", "output/botcore.async_stats.rst", "output/botcore.exts.rst", "output/botcore.site_api.rst", "output/botcore.utils.rst", "output/botcore.utils.caching.rst", "output/botcore.utils.channel.rst", "output/botcore.utils.commands.rst", "output/botcore.utils.interactions.rst", "output/botcore.utils.logging.rst", "output/botcore.utils.members.rst", "output/botcore.utils.regex.rst", "output/botcore.utils.scheduling.rst"], "titles": ["Changelog", "Local Development & Testing", "Bot Core Project Documentation", "Botcore", "async_stats", "Exts", "site_api", "Utils", "caching", "channel", "commands", "interactions", "logging", "members", "regex", "scheduling"], "terms": {"8": 0, "2": [0, 3, 11], "0": [0, 8, 11, 12], "18th": 0, "august": 0, "2022": 0, "support": [0, 4, 7, 15], "125": 0, "bump": 0, "discord": [0, 1, 3, 5, 7, 9, 10, 13, 14], "py": 0, "stabl": 0, "releas": 0, "1": [0, 12], "16th": 0, "124": 0, "updat": 0, "botcor": [0, 1, 2, 11], "util": [0, 1, 2, 3, 8, 11, 12], "regex": [0, 3, 7], "discord_invit": [0, 14], "option": [0, 3, 4, 6, 8, 10, 11, 12, 13], "match": [0, 3], "lead": 0, "http": [0, 6, 14], "": [0, 1, 7, 8, 10, 11, 12, 14, 15], "www": 0, "27th": 0, "juli": 0, "break": 0, "110": 0, "async": [0, 3, 4, 6, 8, 9, 10, 11, 13], "rediscach": 0, "v1": 0, "rc2": 0, "bug": 0, "107": 0, "declar": 0, "aiodn": 0, "project": [0, 1], "depend": [0, 9], "add": [0, 3], "sampl": 0, "boilerpl": 0, "document": 0, "explain": 0, "how": [0, 8, 15], "develop": [0, 2, 3, 7], "bot": [0, 1, 3, 7, 9], "core": [0, 1], "108": 0, "python": [0, 1, 3, 15], "version": [0, 10], "3": 0, "10": 0, "7": 0, "5": 0, "23rd": 0, "featur": [0, 1, 3], "101": 0, "clean": [0, 10], "string": [0, 6], "referenc": 0, "messag": [0, 3, 10, 11, 12, 15], "content": [0, 6, 10], "4": 0, "17th": 0, "106": 0, "an": [0, 1, 3, 4, 6, 7, 8, 9, 12, 15], "attr": 0, "interact": [0, 3, 7, 9], "viewwithuserandrolecheck": [0, 11], "On": 0, "view": [0, 11], "timeout": [0, 11], "thi": [0, 1, 3, 7, 9, 11, 13, 14, 15], "ha": [0, 7], "its": [0, 3], "remov": [0, 3, 11], "set": [0, 1, 3, 11], "104": 0, "fix": 0, "deletemessagebutton": [0, 11], "work": [0, 1], "due": 0, "us": [0, 1, 3, 4, 6, 7, 9, 12, 13, 14, 15], "wrong": 0, "delet": [0, 6, 8, 11], "method": [0, 4, 6, 7, 12], "103": 0, "button": [0, 11], "attach": 0, "parent": [0, 11], "gener": [0, 3, 15], "onli": [0, 3], "allow": [0, 1, 3, 11], "specifi": [0, 11], "user": [0, 11], "role": [0, 1, 3, 11, 13], "9th": 0, "98": 0, "close": [0, 3, 6, 15], "botbas": [0, 3], "stat": [0, 4], "_transport": 0, "wa": [0, 9, 15], "creat": [0, 3, 4, 8, 15], "30th": 0, "june": 0, "91": 0, "miss": 0, "await": [0, 11, 13], "ping_servic": [0, 3], "some": 0, "case": 0, "pass": [0, 6, 12, 13, 15], "self": [0, 3, 11], "paramet": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15], "incorrect": 0, "docstr": 0, "member": [0, 3, 7], "handle_role_chang": [0, 13], "96": 0, "attempt": [0, 3, 9, 13], "connect": [0, 3, 4], "statsd_url": [0, 3], "when": [0, 3, 4, 6, 7, 8, 15], "i": [0, 1, 3, 6, 7, 9, 11, 12, 13, 15], "none": [0, 3, 4, 6, 7, 8, 10, 11, 12, 13, 15], "28th": 0, "93": 0, "0eb3d26": 0, "auto": 0, "mod": 0, "which": [0, 1, 7, 15], "new": [0, 1, 4, 6, 8, 15], "auto_mod": 0, "message_typ": 0, "need": [0, 1], "our": [0, 1, 7], "filter": 0, "system": [0, 1], "mai": [0, 8], "79": 0, "restor": 0, "site": [0, 6], "sphinx": 0, "multivers": 0, "make": [0, 1, 12], "avail": [0, 3], "older": 0, "doc": 0, "24th": 0, "78": 0, "4cbe8f5": 0, "permiss": [0, 9], "resolut": 0, "deal": 0, "time": [0, 15], "out": [0, 1, 11], "10th": 0, "75": 0, "invit": [0, 14], "longer": [0, 11], "return": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15], "url": [0, 3, 6], "safe": 0, "result": [0, 15], "refer": 0, "handl": [0, 13, 15], "captur": [0, 14], "all": [0, 1, 3, 4, 7, 15], "charact": 0, "up": [0, 1, 3], "whitespac": [0, 14], "6": 0, "26th": 0, "april": 0, "72": 0, "5a06fa5": 0, "notabl": 0, "one": [0, 3], "commit": 0, "dynam": 0, "extend": 0, "guild": [0, 1, 3, 13], "chunk": 0, "base": [0, 3, 4, 6, 8, 11, 12, 15], "number": 0, "so": [0, 1, 7], "should": [0, 1, 3, 6, 11], "actual": 0, "now": [0, 1, 15], "25th": 0, "69": 0, "get": [0, 6, 9, 13], "21st": 0, "68": 0, "correct": [0, 1], "pyproject": [0, 1], "toml": [0, 1], "directli": 0, "main": 0, "don": [0, 15], "t": [0, 10, 15], "load": [0, 1, 3, 7], "modul": [0, 3, 7, 15], "start": [0, 3, 15], "_": 0, "66": 0, "each": 0, "cog": [0, 3, 5], "own": 0, "task": [0, 3, 15], "avoid": [0, 3], "singl": 0, "crash": 0, "entir": [0, 3], "process": 0, "20th": 0, "65": 0, "unqualifi": [0, 7], "namespac": [0, 15], "manipul": 0, "extens": [0, 3], "19th": 0, "64": 0, "987235d": 0, "revert": 0, "chang": [0, 1], "help": [0, 1], "command": [0, 1, 3, 7, 9], "behaviour": 0, "broke": 0, "custom": [0, 8, 12], "pagin": 0, "also": [0, 7, 11], "basic": [0, 11], "forum": 0, "channel": [0, 3, 7], "63": 0, "api_cli": [0, 3], "__init__": [0, 3, 4, 6, 8, 11, 15], "site_api": [0, 2, 3], "apicli": [0, 3, 6], "instanc": [0, 3, 6, 8, 9, 12, 15], "61": 0, "reconnect": 0, "redi": 0, "session": [0, 3, 6], "setup": [0, 3], "5th": 0, "56": 0, "move": 0, "creation": 0, "asyncio": [0, 4, 15], "event": [0, 3, 4, 15], "_guild_avail": 0, "within": [0, 3], "hook": 0, "deprec": 0, "notic": 0, "dummi": [0, 3], "asyncstatsdcli": 0, "befor": [0, 3, 11, 15], "real": 0, "cannot": [0, 3], "made": 0, "init": [0, 3, 4], "2nd": 0, "54": 0, "aiohttp": [0, 3, 6], "asyncresolv": 0, "42": 0, "public": 0, "statsd": [0, 3, 4], "client": [0, 3, 4], "ext": [0, 2, 3, 7, 9, 10], "sub": [0, 3], "class": [0, 3, 4, 6, 8, 11, 12, 15], "abstract": 0, "lot": 0, "logic": 0, "share": 0, "between": [0, 1], "latest": 0, "alpha": 0, "14th": 0, "march": 0, "39": 0, "migrat": 0, "back": 0, "37": 0, "log": [0, 3, 7, 13, 15], "trace": [0, 12], "import": 0, "can": [0, 1, 11, 15], "function": [0, 3, 8, 9, 12, 13, 15], "3rd": 0, "35": 0, "apply_monkey_patch": [0, 7], "februari": 0, "34": 0, "port": [0, 4], "api": [0, 6, 13], "wrapper": [0, 6, 15], "from": [0, 1, 3, 4, 6, 7, 9, 11, 13, 15], "repo": 0, "22nd": 0, "32": 0, "0a0": 0, "disnak": 0, "29": 0, "mani": [0, 3, 8], "common": [0, 1, 3, 7, 12, 14], "cach": [0, 3, 7, 9, 13], "logger": [0, 12], "schedul": [0, 3, 7], "monkei": [0, 7], "patch": [0, 6, 7], "ad": [0, 1, 7, 11, 12], "intersphinx": 0, "januari": 0, "12": 0, "code": [0, 1, 14], "block": [0, 14], "detect": 0, "decemb": 0, "2021": 0, "autogener": 0, "novemb": 0, "packag": [0, 7], "poetri": [0, 1], "lint": 0, "ci": 0, "To": [1, 3, 12], "your": 1, "ar": [1, 3, 8, 11, 14], "few": 1, "possibl": 1, "approach": 1, "instal": 1, "copi": 1, "pre": 1, "exist": [1, 15], "provid": [1, 8, 10, 15], "templat": 1, "dev": [1, 3], "folder": 1, "see": [1, 11], "below": 1, "more": 1, "info": 1, "both": 1, "what": 1, "go": 1, "them": [1, 3, 15], "you": [1, 9, 14], "ll": [1, 15], "write": 1, "might": 1, "mean": 1, "modifi": [1, 13], "ones": 1, "etc": 1, "The": [1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15], "step": 1, "most": 1, "groundwork": 1, "exact": 1, "requir": [1, 3, 15], "vari": 1, "re": [1, 3, 15], "navig": 1, "want": 1, "sir": 1, "lancebot": 1, "run": [1, 15], "pip": 1, "path": 1, "environ": 1, "root": [1, 3, 7], "directori": 1, "machin": 1, "That": 1, "contain": [1, 11, 15], "file": 1, "sure": 1, "again": 1, "git": 1, "ignor": [1, 7], "free": 1, "howev": 1, "like": 1, "m": 1, "docker": 1, "compos": 1, "d": 1, "configur": 1, "variabl": 1, "program": 1, "env": 1, "bot_token": 1, "token": [1, 6], "intent": 1, "enabl": 1, "guild_id": [1, 3], "monitor": 1, "prefix": [1, 4], "invok": [1, 11], "default": 1, "mention": [1, 3], "allowed_rol": [1, 3, 11], "A": [1, 3, 6, 7, 8, 9, 11, 15], "comma": 1, "seper": 1, "list": [1, 3], "id": [1, 3, 9, 11, 15], "do": [1, 9], "anyth": 1, "reinstal": 1, "librari": 1, "includ": 1, "servic": [1, 3], "other": [1, 15], "applic": 1, "certain": 1, "subpackag": 2, "submodul": 2, "async_stat": [2, 3], "index": 2, "search": 2, "page": 2, "inform": [2, 12], "local": 2, "test": 2, "changelog": 2, "tool": [3, 7], "arg": [3, 12], "http_session": 3, "redis_sess": 3, "kwarg": [3, 6, 11, 12, 15], "sourc": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "implement": [3, 4, 8, 11, 12], "initialis": [3, 8], "int": [3, 4, 8, 9, 11, 15], "wait_until_guild_avail": 3, "clientsess": [3, 6], "redissess": 3, "async_rediscach": 3, "str": [3, 4, 6, 7, 10, 11, 12, 15], "server": [3, 14], "If": [3, 6, 11, 15], "given": [3, 4, 7, 9, 10, 12, 13, 15], "add_cog": 3, "oper": [3, 15], "type": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15], "add_command": 3, "normal": 3, "alias": [3, 7], "clear": [3, 8], "Not": 3, "instanti": [3, 11, 15], "instead": [3, 15], "connector": 3, "resolv": 3, "load_extens": 3, "save": 3, "all_extens": 3, "ran": 3, "loop": [3, 4, 15], "deadlock": 3, "caus": [3, 7], "wait_for": 3, "call": [3, 15], "log_to_dev_log": 3, "on_guild_avail": 3, "intern": [3, 7], "becom": 3, "appear": 3, "still": 3, "empti": 3, "guild_available_but_cache_empti": 3, "emit": 3, "on_guild_unavail": 3, "unavail": 3, "ping": 3, "ensur": [3, 11, 14], "thei": 3, "remove_command": 3, "name": [3, 7, 12, 15], "alia": [3, 7], "individu": 3, "either": 3, "manual": 3, "edit": 3, "all_command": 3, "setup_hook": 3, "startup": 3, "asyncstatscli": [3, 4], "create_socket": [3, 4], "wait": [3, 15], "until": [3, 14], "readi": 3, "on_readi": 3, "inadequ": 3, "becaus": 3, "second": [3, 11, 15], "guild_creat": 3, "gatewai": 3, "give": 3, "thu": 3, "popul": 3, "except": [3, 6, 12, 15], "startuperror": 3, "error": [3, 6, 7, 13], "transport": 4, "commun": 4, "host": 4, "localhost": 4, "8125": 4, "statsclientbas": 4, "abstracteventloop": [4, 15], "create_datagram_endpoint": 4, "socket": 4, "reusabl": 5, "around": 6, "site_api_url": 6, "site_api_token": 6, "session_kwarg": 6, "object": [6, 7, 8, 9, 13, 15], "django": 6, "initi": [6, 15], "authent": 6, "keyword": [6, 7, 12], "argument": [6, 7, 8, 10, 12, 13], "constructor": 6, "endpoint": 6, "raise_for_statu": 6, "true": [6, 12, 15], "send": [6, 11], "request": [6, 14], "json": 6, "respons": 6, "bool": [6, 9, 11, 15], "whether": [6, 9], "rais": [6, 9, 10, 13, 15], "ok": 6, "ani": [6, 14, 15], "extra": 6, "dict": 6, "204": 6, "No": 6, "equival": 6, "static": 6, "maybe_raise_for_statu": 6, "should_rais": 6, "responsecodeerror": 6, "non": 6, "clientrespons": 6, "check": [6, 9, 11, 15], "post": 6, "put": 6, "response_json": 6, "response_text": 6, "valueerror": 6, "receiv": [6, 9], "text": [6, 10], "__str__": 6, "represent": 6, "appli": [7, 8], "group": [7, 14], "root_alias": 7, "two": 7, "sequenc": [7, 11], "act": 7, "top": 7, "level": [7, 12], "rather": 7, "than": 7, "being": [7, 13], "It": 7, "store": [7, 8], "attribut": 7, "send_typ": 7, "403": 7, "under": 7, "heavi": 7, "cloudflar": 7, "worker": 7, "rout": 7, "thrown": 7, "qualifi": 7, "relat": [8, 12], "asynccach": 8, "max_siz": 8, "128": 8, "lru": 8, "coroutin": [8, 13, 15], "onc": 8, "exce": 8, "maximum": 8, "size": 8, "kei": 8, "fifo": 8, "order": [8, 15], "offset": 8, "__call__": 8, "arg_offset": 8, "decor": 8, "posit": 8, "callabl": [8, 13], "wrap": [8, 15], "target": 8, "item": 8, "helper": [9, 13], "variou": 9, "get_or_fetch_channel": 9, "channel_id": 9, "fetch": [9, 13], "invaliddata": 9, "unknown": 9, "httpexcept": 9, "retriev": 9, "fail": 9, "notfound": 9, "invalid": 9, "forbidden": 9, "have": [9, 12], "guildchannel": 9, "is_in_categori": 9, "category_id": 9, "categori": 9, "textchannel": 9, "clean_text_or_repli": 10, "ctx": [10, 11], "repli": 10, "context": 10, "badargu": 10, "wasn": 10, "els": 10, "style": 11, "buttonstyl": 11, "secondari": 11, "label": 11, "click": 11, "itself": 11, "carri": 11, "done": [11, 15], "callback": 11, "origin": 11, "allowed_us": 11, "180": 11, "moder": 11, "who": 11, "float": [11, 15], "last": 11, "ui": 11, "accept": 11, "input": 11, "similar": [11, 14], "after": [11, 15], "interaction_check": 11, "occur": 11, "on_timeout": 11, "customlogg": 12, "msg": 12, "sever": 12, "exc_info": 12, "valu": 12, "houston": 12, "we": [12, 13], "interest": 12, "problem": 12, "get_logg": 12, "mypi": 12, "recognis": 12, "interactin": 13, "get_or_fetch_memb": 13, "member_id": 13, "failur": 13, "indic": 13, "could": 13, "found": [13, 15], "coro": [13, 15], "sole": 13, "expect": 13, "add_rol": 13, "remove_rol": 13, "purpos": 13, "intend": 13, "regular": 14, "express": 14, "pattern": 14, "pleas": 14, "sanitis": 14, "output": 14, "someth": 14, "urllib": 14, "pars": 14, "quot": 14, "formatted_code_regex": 14, "format": 14, "raw_code_regex": 14, "raw": 14, "execut": 15, "keep": 15, "track": 15, "must": 15, "distinguish": 15, "suggest": 15, "immedi": 15, "futur": 15, "schedule_at": 15, "schedule_lat": 15, "uniqu": 15, "cancel": 15, "prematur": 15, "same": 15, "current": 15, "__contains__": 15, "task_id": 15, "hashabl": 15, "look": 15, "unschedul": 15, "identifi": 15, "warn": 15, "doesn": 15, "cancel_al": 15, "known": 15, "alreadi": 15, "prevent": 15, "unawait": 15, "elsewher": 15, "timezon": 15, "awar": 15, "calcul": 15, "subtract": 15, "na\u00efv": 15, "utc": 15, "past": 15, "datetim": 15, "delai": 15, "union": 15, "long": 15, "create_task": 15, "suppressed_except": 15, "event_loop": 15, "otherwis": 15, "typevar": 15, "task_return": 15, "tupl": 15}, "objects": {"": [[3, 0, 0, "-", "botcore"]], "botcore": [[3, 1, 1, "", "BotBase"], [3, 3, 1, "", "StartupError"], [4, 0, 0, "-", "async_stats"], [5, 0, 0, "-", "exts"], [6, 0, 0, "-", "site_api"], [7, 0, 0, "-", "utils"]], "botcore.BotBase": [[3, 2, 1, "", "__init__"], [3, 2, 1, "", "add_cog"], [3, 2, 1, "", "add_command"], [3, 2, 1, "", "clear"], [3, 2, 1, "", "close"], [3, 2, 1, "", "load_extensions"], [3, 2, 1, "", "log_to_dev_log"], [3, 2, 1, "", "on_guild_available"], [3, 2, 1, "", "on_guild_unavailable"], [3, 2, 1, "", "ping_services"], [3, 2, 1, "", "remove_command"], [3, 2, 1, "", "setup_hook"], [3, 2, 1, "", "wait_until_guild_available"]], "botcore.StartupError": [[3, 2, 1, "", "__init__"]], "botcore.async_stats": [[4, 1, 1, "", "AsyncStatsClient"]], "botcore.async_stats.AsyncStatsClient": [[4, 2, 1, "", "__init__"], [4, 2, 1, "", "create_socket"]], "botcore.site_api": [[6, 1, 1, "", "APIClient"], [6, 3, 1, "", "ResponseCodeError"]], "botcore.site_api.APIClient": [[6, 2, 1, "", "__init__"], [6, 2, 1, "", "close"], [6, 2, 1, "", "delete"], [6, 2, 1, "", "get"], [6, 2, 1, "", "maybe_raise_for_status"], [6, 2, 1, "", "patch"], [6, 2, 1, "", "post"], [6, 2, 1, "", "put"], [6, 2, 1, "", "request"]], "botcore.site_api.ResponseCodeError": [[6, 2, 1, "", "__init__"], [6, 2, 1, "", "__str__"]], "botcore.utils": [[7, 4, 1, "", "apply_monkey_patches"], [8, 0, 0, "-", "caching"], [9, 0, 0, "-", "channel"], [10, 0, 0, "-", "commands"], [11, 0, 0, "-", "interactions"], [12, 0, 0, "-", "logging"], [13, 0, 0, "-", "members"], [14, 0, 0, "-", "regex"], [15, 0, 0, "-", "scheduling"], [7, 4, 1, "", "unqualify"]], "botcore.utils.caching": [[8, 1, 1, "", "AsyncCache"]], "botcore.utils.caching.AsyncCache": [[8, 2, 1, "", "__call__"], [8, 2, 1, "", "__init__"], [8, 2, 1, "", "clear"]], "botcore.utils.channel": [[9, 4, 1, "", "get_or_fetch_channel"], [9, 4, 1, "", "is_in_category"]], "botcore.utils.commands": [[10, 4, 1, "", "clean_text_or_reply"]], "botcore.utils.interactions": [[11, 1, 1, "", "DeleteMessageButton"], [11, 1, 1, "", "ViewWithUserAndRoleCheck"]], "botcore.utils.interactions.DeleteMessageButton": [[11, 2, 1, "", "__init__"], [11, 2, 1, "", "callback"]], "botcore.utils.interactions.ViewWithUserAndRoleCheck": [[11, 2, 1, "", "__init__"], [11, 2, 1, "", "interaction_check"], [11, 2, 1, "", "on_timeout"]], "botcore.utils.logging": [[12, 1, 1, "", "CustomLogger"], [12, 4, 1, "", "get_logger"]], "botcore.utils.logging.CustomLogger": [[12, 2, 1, "", "trace"]], "botcore.utils.members": [[13, 4, 1, "", "get_or_fetch_member"], [13, 4, 1, "", "handle_role_change"]], "botcore.utils.regex": [[14, 5, 1, "", "DISCORD_INVITE"], [14, 5, 1, "", "FORMATTED_CODE_REGEX"], [14, 5, 1, "", "RAW_CODE_REGEX"]], "botcore.utils.scheduling": [[15, 1, 1, "", "Scheduler"], [15, 4, 1, "", "create_task"]], "botcore.utils.scheduling.Scheduler": [[15, 2, 1, "", "__contains__"], [15, 2, 1, "", "__init__"], [15, 2, 1, "", "cancel"], [15, 2, 1, "", "cancel_all"], [15, 2, 1, "", "schedule"], [15, 2, 1, "", "schedule_at"], [15, 2, 1, "", "schedule_later"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:exception", "4": "py:function", "5": "py:data"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "exception", "Python exception"], "4": ["py", "function", "Python function"], "5": ["py", "data", "Python data"]}, "titleterms": {"changelog": 0, "local": 1, "develop": 1, "test": 1, "option": 1, "1": 1, "2": 1, "bot": 2, "core": 2, "project": 2, "document": 2, "refer": 2, "modul": 2, "extra": 2, "botcor": 3, "subpackag": 3, "submodul": [3, 7], "async_stat": 4, "ext": 5, "site_api": 6, "util": 7, "cach": 8, "channel": 9, "command": 10, "interact": 11, "log": 12, "member": 13, "regex": 14, "schedul": 15}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx": 56}})
\ No newline at end of file
diff --git a/main/versions.html b/main/versions.html
index 4acb5aa1..bd3255fb 100644
--- a/main/versions.html
+++ b/main/versions.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -341,6 +345,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.1.1/.buildinfo b/v7.1.1/.buildinfo
index f49005fc..8feeaf63 100644
--- a/v7.1.1/.buildinfo
+++ b/v7.1.1/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 8bae8992e7639944f920e9a2638fe642
+config: 18b9e587cb57503ccdef34c4e0fed945
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.1/.doctrees/changelog.doctree b/v7.1.1/.doctrees/changelog.doctree
index 92692578..11dccd99 100644
Binary files a/v7.1.1/.doctrees/changelog.doctree and b/v7.1.1/.doctrees/changelog.doctree differ
diff --git a/v7.1.1/.doctrees/environment.pickle b/v7.1.1/.doctrees/environment.pickle
index 0ce8a4a7..0596f65e 100644
Binary files a/v7.1.1/.doctrees/environment.pickle and b/v7.1.1/.doctrees/environment.pickle differ
diff --git a/v7.1.1/.doctrees/index.doctree b/v7.1.1/.doctrees/index.doctree
index 8ae8c299..feed80a3 100644
Binary files a/v7.1.1/.doctrees/index.doctree and b/v7.1.1/.doctrees/index.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.async_stats.doctree b/v7.1.1/.doctrees/output/botcore.async_stats.doctree
index 1ee15a17..204ce4ec 100644
Binary files a/v7.1.1/.doctrees/output/botcore.async_stats.doctree and b/v7.1.1/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.doctree b/v7.1.1/.doctrees/output/botcore.doctree
index 5491b49a..312a4a2c 100644
Binary files a/v7.1.1/.doctrees/output/botcore.doctree and b/v7.1.1/.doctrees/output/botcore.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.exts.doctree b/v7.1.1/.doctrees/output/botcore.exts.doctree
index a96829ca..3b55dc14 100644
Binary files a/v7.1.1/.doctrees/output/botcore.exts.doctree and b/v7.1.1/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.site_api.doctree b/v7.1.1/.doctrees/output/botcore.site_api.doctree
index 2d9701a7..43ba4415 100644
Binary files a/v7.1.1/.doctrees/output/botcore.site_api.doctree and b/v7.1.1/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.caching.doctree b/v7.1.1/.doctrees/output/botcore.utils.caching.doctree
index 036dcb32..951f1144 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.caching.doctree and b/v7.1.1/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.channel.doctree b/v7.1.1/.doctrees/output/botcore.utils.channel.doctree
index 171c608f..644a28df 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.channel.doctree and b/v7.1.1/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.doctree b/v7.1.1/.doctrees/output/botcore.utils.doctree
index e3125a10..6d11ab39 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.doctree and b/v7.1.1/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.logging.doctree b/v7.1.1/.doctrees/output/botcore.utils.logging.doctree
index b853c142..98e10ff3 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.logging.doctree and b/v7.1.1/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.members.doctree b/v7.1.1/.doctrees/output/botcore.utils.members.doctree
index 0fe6c884..7a67e912 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.members.doctree and b/v7.1.1/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.regex.doctree b/v7.1.1/.doctrees/output/botcore.utils.regex.doctree
index 838341d0..ca651bb5 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.regex.doctree and b/v7.1.1/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.scheduling.doctree b/v7.1.1/.doctrees/output/botcore.utils.scheduling.doctree
index b3093bc3..88df89f3 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.1.1/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.1.1/changelog.html b/v7.1.1/changelog.html
index e8e54d59..61183bce 100644
--- a/v7.1.1/changelog.html
+++ b/v7.1.1/changelog.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/genindex.html b/v7.1.1/genindex.html
index 8c78962c..b6cc499f 100644
--- a/v7.1.1/genindex.html
+++ b/v7.1.1/genindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/index.html b/v7.1.1/index.html
index 1e4fdd25..8d3a1b50 100644
--- a/v7.1.1/index.html
+++ b/v7.1.1/index.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.async_stats.html b/v7.1.1/output/botcore.async_stats.html
index 9628c5ed..67529889 100644
--- a/v7.1.1/output/botcore.async_stats.html
+++ b/v7.1.1/output/botcore.async_stats.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.exts.html b/v7.1.1/output/botcore.exts.html
index 446198b2..817375b3 100644
--- a/v7.1.1/output/botcore.exts.html
+++ b/v7.1.1/output/botcore.exts.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.html b/v7.1.1/output/botcore.html
index 4871f113..f6feca15 100644
--- a/v7.1.1/output/botcore.html
+++ b/v7.1.1/output/botcore.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.site_api.html b/v7.1.1/output/botcore.site_api.html
index d4619241..1e33aad6 100644
--- a/v7.1.1/output/botcore.site_api.html
+++ b/v7.1.1/output/botcore.site_api.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.utils.caching.html b/v7.1.1/output/botcore.utils.caching.html
index 89a6d645..c13ceade 100644
--- a/v7.1.1/output/botcore.utils.caching.html
+++ b/v7.1.1/output/botcore.utils.caching.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.utils.channel.html b/v7.1.1/output/botcore.utils.channel.html
index 2fded69a..005854bb 100644
--- a/v7.1.1/output/botcore.utils.channel.html
+++ b/v7.1.1/output/botcore.utils.channel.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.utils.html b/v7.1.1/output/botcore.utils.html
index 8d378e32..bd2b76de 100644
--- a/v7.1.1/output/botcore.utils.html
+++ b/v7.1.1/output/botcore.utils.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.utils.logging.html b/v7.1.1/output/botcore.utils.logging.html
index 2fee6129..fb96362a 100644
--- a/v7.1.1/output/botcore.utils.logging.html
+++ b/v7.1.1/output/botcore.utils.logging.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.utils.members.html b/v7.1.1/output/botcore.utils.members.html
index 2e1f36f6..d722f507 100644
--- a/v7.1.1/output/botcore.utils.members.html
+++ b/v7.1.1/output/botcore.utils.members.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.utils.regex.html b/v7.1.1/output/botcore.utils.regex.html
index d32ef27f..ed61009b 100644
--- a/v7.1.1/output/botcore.utils.regex.html
+++ b/v7.1.1/output/botcore.utils.regex.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/output/botcore.utils.scheduling.html b/v7.1.1/output/botcore.utils.scheduling.html
index 8964ef59..1423e4fa 100644
--- a/v7.1.1/output/botcore.utils.scheduling.html
+++ b/v7.1.1/output/botcore.utils.scheduling.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/py-modindex.html b/v7.1.1/py-modindex.html
index fcb46226..097be422 100644
--- a/v7.1.1/py-modindex.html
+++ b/v7.1.1/py-modindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/search.html b/v7.1.1/search.html
index 76550769..63a17722 100644
--- a/v7.1.1/search.html
+++ b/v7.1.1/search.html
@@ -201,6 +201,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.1/versions.html b/v7.1.1/versions.html
index 4404bcfc..2f2d26d7 100644
--- a/v7.1.1/versions.html
+++ b/v7.1.1/versions.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -338,6 +342,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.1.2/.buildinfo b/v7.1.2/.buildinfo
index a2e7f26b..88a94b48 100644
--- a/v7.1.2/.buildinfo
+++ b/v7.1.2/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: b7af695c3ab37640a59c648ae6813b20
+config: 3a5e91121d3914642ef24c8c2434a6ec
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.2/.doctrees/changelog.doctree b/v7.1.2/.doctrees/changelog.doctree
index 32a9723c..70f046fd 100644
Binary files a/v7.1.2/.doctrees/changelog.doctree and b/v7.1.2/.doctrees/changelog.doctree differ
diff --git a/v7.1.2/.doctrees/environment.pickle b/v7.1.2/.doctrees/environment.pickle
index b7c11e3d..3a99a075 100644
Binary files a/v7.1.2/.doctrees/environment.pickle and b/v7.1.2/.doctrees/environment.pickle differ
diff --git a/v7.1.2/.doctrees/index.doctree b/v7.1.2/.doctrees/index.doctree
index fec6575c..24b899b6 100644
Binary files a/v7.1.2/.doctrees/index.doctree and b/v7.1.2/.doctrees/index.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.async_stats.doctree b/v7.1.2/.doctrees/output/botcore.async_stats.doctree
index e7168bfd..60b11760 100644
Binary files a/v7.1.2/.doctrees/output/botcore.async_stats.doctree and b/v7.1.2/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.doctree b/v7.1.2/.doctrees/output/botcore.doctree
index e6db5a82..f3f8ec08 100644
Binary files a/v7.1.2/.doctrees/output/botcore.doctree and b/v7.1.2/.doctrees/output/botcore.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.exts.doctree b/v7.1.2/.doctrees/output/botcore.exts.doctree
index 8f86e0c9..82b70da6 100644
Binary files a/v7.1.2/.doctrees/output/botcore.exts.doctree and b/v7.1.2/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.site_api.doctree b/v7.1.2/.doctrees/output/botcore.site_api.doctree
index b8843d57..525d2e2f 100644
Binary files a/v7.1.2/.doctrees/output/botcore.site_api.doctree and b/v7.1.2/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.caching.doctree b/v7.1.2/.doctrees/output/botcore.utils.caching.doctree
index d357d967..7fb2bcee 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.caching.doctree and b/v7.1.2/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.channel.doctree b/v7.1.2/.doctrees/output/botcore.utils.channel.doctree
index 57f6bd91..8e5eb8d4 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.channel.doctree and b/v7.1.2/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.doctree b/v7.1.2/.doctrees/output/botcore.utils.doctree
index 2561d281..f91e93de 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.doctree and b/v7.1.2/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.logging.doctree b/v7.1.2/.doctrees/output/botcore.utils.logging.doctree
index d1110215..789e3b7b 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.logging.doctree and b/v7.1.2/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.members.doctree b/v7.1.2/.doctrees/output/botcore.utils.members.doctree
index c78b6e9a..b826f22d 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.members.doctree and b/v7.1.2/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.regex.doctree b/v7.1.2/.doctrees/output/botcore.utils.regex.doctree
index a6a3224b..8bf3bbf2 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.regex.doctree and b/v7.1.2/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.scheduling.doctree b/v7.1.2/.doctrees/output/botcore.utils.scheduling.doctree
index faa9818a..967b55a0 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.1.2/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.1.2/changelog.html b/v7.1.2/changelog.html
index 9fb7a093..71544b73 100644
--- a/v7.1.2/changelog.html
+++ b/v7.1.2/changelog.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/genindex.html b/v7.1.2/genindex.html
index d95ae1dd..0abd0a7f 100644
--- a/v7.1.2/genindex.html
+++ b/v7.1.2/genindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/index.html b/v7.1.2/index.html
index c33fa2b3..40349f8d 100644
--- a/v7.1.2/index.html
+++ b/v7.1.2/index.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.async_stats.html b/v7.1.2/output/botcore.async_stats.html
index d821f012..8d3ec558 100644
--- a/v7.1.2/output/botcore.async_stats.html
+++ b/v7.1.2/output/botcore.async_stats.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.exts.html b/v7.1.2/output/botcore.exts.html
index 65a168fb..1b2cca74 100644
--- a/v7.1.2/output/botcore.exts.html
+++ b/v7.1.2/output/botcore.exts.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.html b/v7.1.2/output/botcore.html
index dea1b860..7f941d27 100644
--- a/v7.1.2/output/botcore.html
+++ b/v7.1.2/output/botcore.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.site_api.html b/v7.1.2/output/botcore.site_api.html
index b17187d0..afed04c5 100644
--- a/v7.1.2/output/botcore.site_api.html
+++ b/v7.1.2/output/botcore.site_api.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.utils.caching.html b/v7.1.2/output/botcore.utils.caching.html
index 1d0ec427..b6f156d5 100644
--- a/v7.1.2/output/botcore.utils.caching.html
+++ b/v7.1.2/output/botcore.utils.caching.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.utils.channel.html b/v7.1.2/output/botcore.utils.channel.html
index b0c72621..1e648db8 100644
--- a/v7.1.2/output/botcore.utils.channel.html
+++ b/v7.1.2/output/botcore.utils.channel.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.utils.html b/v7.1.2/output/botcore.utils.html
index 0e0bda4a..1bca21d2 100644
--- a/v7.1.2/output/botcore.utils.html
+++ b/v7.1.2/output/botcore.utils.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.utils.logging.html b/v7.1.2/output/botcore.utils.logging.html
index 48cbdbf4..ae4fcb52 100644
--- a/v7.1.2/output/botcore.utils.logging.html
+++ b/v7.1.2/output/botcore.utils.logging.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.utils.members.html b/v7.1.2/output/botcore.utils.members.html
index 7d19a67a..fb850936 100644
--- a/v7.1.2/output/botcore.utils.members.html
+++ b/v7.1.2/output/botcore.utils.members.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.utils.regex.html b/v7.1.2/output/botcore.utils.regex.html
index 09b77368..f980cd28 100644
--- a/v7.1.2/output/botcore.utils.regex.html
+++ b/v7.1.2/output/botcore.utils.regex.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/output/botcore.utils.scheduling.html b/v7.1.2/output/botcore.utils.scheduling.html
index 0ebb4927..5f66858d 100644
--- a/v7.1.2/output/botcore.utils.scheduling.html
+++ b/v7.1.2/output/botcore.utils.scheduling.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/py-modindex.html b/v7.1.2/py-modindex.html
index 1f96a2f2..e243a480 100644
--- a/v7.1.2/py-modindex.html
+++ b/v7.1.2/py-modindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/search.html b/v7.1.2/search.html
index 7224d310..c2dfc5a9 100644
--- a/v7.1.2/search.html
+++ b/v7.1.2/search.html
@@ -201,6 +201,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.2/versions.html b/v7.1.2/versions.html
index ecbb9edc..36e7abf6 100644
--- a/v7.1.2/versions.html
+++ b/v7.1.2/versions.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -338,6 +342,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.1.3/.buildinfo b/v7.1.3/.buildinfo
index dfb2567e..7d981833 100644
--- a/v7.1.3/.buildinfo
+++ b/v7.1.3/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: cd89ad7294d8875d0ec7a644a0897139
+config: 0ec26f1dc2984d3943e7b9ec965225d8
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.3/.doctrees/changelog.doctree b/v7.1.3/.doctrees/changelog.doctree
index ae9b022a..6022bd6f 100644
Binary files a/v7.1.3/.doctrees/changelog.doctree and b/v7.1.3/.doctrees/changelog.doctree differ
diff --git a/v7.1.3/.doctrees/environment.pickle b/v7.1.3/.doctrees/environment.pickle
index 4d425b79..88667d48 100644
Binary files a/v7.1.3/.doctrees/environment.pickle and b/v7.1.3/.doctrees/environment.pickle differ
diff --git a/v7.1.3/.doctrees/index.doctree b/v7.1.3/.doctrees/index.doctree
index c7539e69..5a07302b 100644
Binary files a/v7.1.3/.doctrees/index.doctree and b/v7.1.3/.doctrees/index.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.async_stats.doctree b/v7.1.3/.doctrees/output/botcore.async_stats.doctree
index 32d029f5..ce1abe9e 100644
Binary files a/v7.1.3/.doctrees/output/botcore.async_stats.doctree and b/v7.1.3/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.doctree b/v7.1.3/.doctrees/output/botcore.doctree
index 1a8d35f0..97b168d4 100644
Binary files a/v7.1.3/.doctrees/output/botcore.doctree and b/v7.1.3/.doctrees/output/botcore.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.exts.doctree b/v7.1.3/.doctrees/output/botcore.exts.doctree
index 3c3114ee..b7e00ab6 100644
Binary files a/v7.1.3/.doctrees/output/botcore.exts.doctree and b/v7.1.3/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.site_api.doctree b/v7.1.3/.doctrees/output/botcore.site_api.doctree
index 21a5fba0..a67d3bf3 100644
Binary files a/v7.1.3/.doctrees/output/botcore.site_api.doctree and b/v7.1.3/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.caching.doctree b/v7.1.3/.doctrees/output/botcore.utils.caching.doctree
index 2c16e1bd..a830c85d 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.caching.doctree and b/v7.1.3/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.channel.doctree b/v7.1.3/.doctrees/output/botcore.utils.channel.doctree
index 21b16343..0fb36baf 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.channel.doctree and b/v7.1.3/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.doctree b/v7.1.3/.doctrees/output/botcore.utils.doctree
index ed4f220b..eb3eea5c 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.doctree and b/v7.1.3/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.logging.doctree b/v7.1.3/.doctrees/output/botcore.utils.logging.doctree
index d358df25..497d178a 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.logging.doctree and b/v7.1.3/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.members.doctree b/v7.1.3/.doctrees/output/botcore.utils.members.doctree
index 688a94a4..8f1e66c7 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.members.doctree and b/v7.1.3/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.regex.doctree b/v7.1.3/.doctrees/output/botcore.utils.regex.doctree
index bf73596d..c5d5f55a 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.regex.doctree and b/v7.1.3/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.scheduling.doctree b/v7.1.3/.doctrees/output/botcore.utils.scheduling.doctree
index 2fffabd1..9c5c6b6b 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.1.3/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.1.3/changelog.html b/v7.1.3/changelog.html
index a82270e3..cfcfa0ac 100644
--- a/v7.1.3/changelog.html
+++ b/v7.1.3/changelog.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/genindex.html b/v7.1.3/genindex.html
index 5d91c4a8..fdbdc80c 100644
--- a/v7.1.3/genindex.html
+++ b/v7.1.3/genindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/index.html b/v7.1.3/index.html
index 981e044e..d9bbc328 100644
--- a/v7.1.3/index.html
+++ b/v7.1.3/index.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.async_stats.html b/v7.1.3/output/botcore.async_stats.html
index 0ee51079..b331c8df 100644
--- a/v7.1.3/output/botcore.async_stats.html
+++ b/v7.1.3/output/botcore.async_stats.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.exts.html b/v7.1.3/output/botcore.exts.html
index 148c194f..56626dd3 100644
--- a/v7.1.3/output/botcore.exts.html
+++ b/v7.1.3/output/botcore.exts.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.html b/v7.1.3/output/botcore.html
index 808d7723..23a0e6f0 100644
--- a/v7.1.3/output/botcore.html
+++ b/v7.1.3/output/botcore.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.site_api.html b/v7.1.3/output/botcore.site_api.html
index c3538c9b..4246827c 100644
--- a/v7.1.3/output/botcore.site_api.html
+++ b/v7.1.3/output/botcore.site_api.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.utils.caching.html b/v7.1.3/output/botcore.utils.caching.html
index 5593fcfd..3b2b7dda 100644
--- a/v7.1.3/output/botcore.utils.caching.html
+++ b/v7.1.3/output/botcore.utils.caching.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.utils.channel.html b/v7.1.3/output/botcore.utils.channel.html
index 0e8043a8..c3856b2e 100644
--- a/v7.1.3/output/botcore.utils.channel.html
+++ b/v7.1.3/output/botcore.utils.channel.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.utils.html b/v7.1.3/output/botcore.utils.html
index c8368f71..8880a5ce 100644
--- a/v7.1.3/output/botcore.utils.html
+++ b/v7.1.3/output/botcore.utils.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.utils.logging.html b/v7.1.3/output/botcore.utils.logging.html
index e7f3fa5b..5f8ba832 100644
--- a/v7.1.3/output/botcore.utils.logging.html
+++ b/v7.1.3/output/botcore.utils.logging.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.utils.members.html b/v7.1.3/output/botcore.utils.members.html
index 00dc3085..1116e000 100644
--- a/v7.1.3/output/botcore.utils.members.html
+++ b/v7.1.3/output/botcore.utils.members.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.utils.regex.html b/v7.1.3/output/botcore.utils.regex.html
index ebf305ad..dc246ca2 100644
--- a/v7.1.3/output/botcore.utils.regex.html
+++ b/v7.1.3/output/botcore.utils.regex.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/output/botcore.utils.scheduling.html b/v7.1.3/output/botcore.utils.scheduling.html
index 33f3d35b..e15223af 100644
--- a/v7.1.3/output/botcore.utils.scheduling.html
+++ b/v7.1.3/output/botcore.utils.scheduling.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/py-modindex.html b/v7.1.3/py-modindex.html
index f7ce7748..ce4a9afc 100644
--- a/v7.1.3/py-modindex.html
+++ b/v7.1.3/py-modindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/search.html b/v7.1.3/search.html
index 55c67543..52178006 100644
--- a/v7.1.3/search.html
+++ b/v7.1.3/search.html
@@ -201,6 +201,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.1.3/versions.html b/v7.1.3/versions.html
index b11176c4..f776417e 100644
--- a/v7.1.3/versions.html
+++ b/v7.1.3/versions.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -338,6 +342,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.2.0/.buildinfo b/v7.2.0/.buildinfo
index 76231d1b..0636f0e9 100644
--- a/v7.2.0/.buildinfo
+++ b/v7.2.0/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: d8b9253d84af4a721c52dff7f5079953
+config: d8e2c4f2448d28c7b7fcb6256542e08a
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.0/.doctrees/changelog.doctree b/v7.2.0/.doctrees/changelog.doctree
index 0c7d2407..472d90f1 100644
Binary files a/v7.2.0/.doctrees/changelog.doctree and b/v7.2.0/.doctrees/changelog.doctree differ
diff --git a/v7.2.0/.doctrees/environment.pickle b/v7.2.0/.doctrees/environment.pickle
index b2be2aa4..8af8b596 100644
Binary files a/v7.2.0/.doctrees/environment.pickle and b/v7.2.0/.doctrees/environment.pickle differ
diff --git a/v7.2.0/.doctrees/index.doctree b/v7.2.0/.doctrees/index.doctree
index c568f653..c8f589f1 100644
Binary files a/v7.2.0/.doctrees/index.doctree and b/v7.2.0/.doctrees/index.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.async_stats.doctree b/v7.2.0/.doctrees/output/botcore.async_stats.doctree
index d72253be..cb21bb9c 100644
Binary files a/v7.2.0/.doctrees/output/botcore.async_stats.doctree and b/v7.2.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.doctree b/v7.2.0/.doctrees/output/botcore.doctree
index 629df0ef..c973c3c5 100644
Binary files a/v7.2.0/.doctrees/output/botcore.doctree and b/v7.2.0/.doctrees/output/botcore.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.exts.doctree b/v7.2.0/.doctrees/output/botcore.exts.doctree
index 594e79b9..6da78da9 100644
Binary files a/v7.2.0/.doctrees/output/botcore.exts.doctree and b/v7.2.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.site_api.doctree b/v7.2.0/.doctrees/output/botcore.site_api.doctree
index 7d6708cf..84935d32 100644
Binary files a/v7.2.0/.doctrees/output/botcore.site_api.doctree and b/v7.2.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.caching.doctree b/v7.2.0/.doctrees/output/botcore.utils.caching.doctree
index 512b2a6a..e55f2e9a 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.caching.doctree and b/v7.2.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.channel.doctree b/v7.2.0/.doctrees/output/botcore.utils.channel.doctree
index e8d4d100..eb71fabd 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.channel.doctree and b/v7.2.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.doctree b/v7.2.0/.doctrees/output/botcore.utils.doctree
index aa2612ce..ff3e0223 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.doctree and b/v7.2.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.logging.doctree b/v7.2.0/.doctrees/output/botcore.utils.logging.doctree
index a356650e..c9fed172 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.logging.doctree and b/v7.2.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.members.doctree b/v7.2.0/.doctrees/output/botcore.utils.members.doctree
index be436401..207eba3c 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.members.doctree and b/v7.2.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.regex.doctree b/v7.2.0/.doctrees/output/botcore.utils.regex.doctree
index 6edaef62..bb8df58a 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.regex.doctree and b/v7.2.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.scheduling.doctree b/v7.2.0/.doctrees/output/botcore.utils.scheduling.doctree
index 46d86db2..8b96c82b 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.2.0/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.2.0/changelog.html b/v7.2.0/changelog.html
index 959857e9..c2f47546 100644
--- a/v7.2.0/changelog.html
+++ b/v7.2.0/changelog.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/genindex.html b/v7.2.0/genindex.html
index bb9f92a4..ebb233d7 100644
--- a/v7.2.0/genindex.html
+++ b/v7.2.0/genindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/index.html b/v7.2.0/index.html
index 294459bd..deb552f1 100644
--- a/v7.2.0/index.html
+++ b/v7.2.0/index.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.async_stats.html b/v7.2.0/output/botcore.async_stats.html
index 7db3e286..39751de6 100644
--- a/v7.2.0/output/botcore.async_stats.html
+++ b/v7.2.0/output/botcore.async_stats.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.exts.html b/v7.2.0/output/botcore.exts.html
index 0697107d..cfb5a7dc 100644
--- a/v7.2.0/output/botcore.exts.html
+++ b/v7.2.0/output/botcore.exts.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.html b/v7.2.0/output/botcore.html
index 4e2234c4..12a59e83 100644
--- a/v7.2.0/output/botcore.html
+++ b/v7.2.0/output/botcore.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.site_api.html b/v7.2.0/output/botcore.site_api.html
index 7d916325..574c04b9 100644
--- a/v7.2.0/output/botcore.site_api.html
+++ b/v7.2.0/output/botcore.site_api.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.utils.caching.html b/v7.2.0/output/botcore.utils.caching.html
index d177cd9b..873d872d 100644
--- a/v7.2.0/output/botcore.utils.caching.html
+++ b/v7.2.0/output/botcore.utils.caching.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.utils.channel.html b/v7.2.0/output/botcore.utils.channel.html
index efc74ef1..565886a4 100644
--- a/v7.2.0/output/botcore.utils.channel.html
+++ b/v7.2.0/output/botcore.utils.channel.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.utils.html b/v7.2.0/output/botcore.utils.html
index f3af321d..cd002531 100644
--- a/v7.2.0/output/botcore.utils.html
+++ b/v7.2.0/output/botcore.utils.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.utils.logging.html b/v7.2.0/output/botcore.utils.logging.html
index 20071680..022b3f40 100644
--- a/v7.2.0/output/botcore.utils.logging.html
+++ b/v7.2.0/output/botcore.utils.logging.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.utils.members.html b/v7.2.0/output/botcore.utils.members.html
index c6659c0b..f49da8e6 100644
--- a/v7.2.0/output/botcore.utils.members.html
+++ b/v7.2.0/output/botcore.utils.members.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.utils.regex.html b/v7.2.0/output/botcore.utils.regex.html
index 84cb3835..69329216 100644
--- a/v7.2.0/output/botcore.utils.regex.html
+++ b/v7.2.0/output/botcore.utils.regex.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/output/botcore.utils.scheduling.html b/v7.2.0/output/botcore.utils.scheduling.html
index a56fac3f..e4157644 100644
--- a/v7.2.0/output/botcore.utils.scheduling.html
+++ b/v7.2.0/output/botcore.utils.scheduling.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/py-modindex.html b/v7.2.0/py-modindex.html
index 9119a134..fe04dcb9 100644
--- a/v7.2.0/py-modindex.html
+++ b/v7.2.0/py-modindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/search.html b/v7.2.0/search.html
index f1961ca6..eb3e519e 100644
--- a/v7.2.0/search.html
+++ b/v7.2.0/search.html
@@ -201,6 +201,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.0/versions.html b/v7.2.0/versions.html
index 6e12f871..21b5d698 100644
--- a/v7.2.0/versions.html
+++ b/v7.2.0/versions.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -338,6 +342,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.2.1/.buildinfo b/v7.2.1/.buildinfo
index 7dd1a0c4..c60cddea 100644
--- a/v7.2.1/.buildinfo
+++ b/v7.2.1/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: b4e073a89c30e3e4dac61857af171c01
+config: 0f9e4006b9a235f403283ac7f03d6681
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.1/.doctrees/changelog.doctree b/v7.2.1/.doctrees/changelog.doctree
index e5afa7a4..90970d10 100644
Binary files a/v7.2.1/.doctrees/changelog.doctree and b/v7.2.1/.doctrees/changelog.doctree differ
diff --git a/v7.2.1/.doctrees/environment.pickle b/v7.2.1/.doctrees/environment.pickle
index 12962083..da961912 100644
Binary files a/v7.2.1/.doctrees/environment.pickle and b/v7.2.1/.doctrees/environment.pickle differ
diff --git a/v7.2.1/.doctrees/index.doctree b/v7.2.1/.doctrees/index.doctree
index 6aa456c8..edf0bb8c 100644
Binary files a/v7.2.1/.doctrees/index.doctree and b/v7.2.1/.doctrees/index.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.async_stats.doctree b/v7.2.1/.doctrees/output/botcore.async_stats.doctree
index c2250d4c..aac7aab0 100644
Binary files a/v7.2.1/.doctrees/output/botcore.async_stats.doctree and b/v7.2.1/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.doctree b/v7.2.1/.doctrees/output/botcore.doctree
index e70e0bb3..c6e95752 100644
Binary files a/v7.2.1/.doctrees/output/botcore.doctree and b/v7.2.1/.doctrees/output/botcore.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.exts.doctree b/v7.2.1/.doctrees/output/botcore.exts.doctree
index 105f892e..2b92cfa1 100644
Binary files a/v7.2.1/.doctrees/output/botcore.exts.doctree and b/v7.2.1/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.site_api.doctree b/v7.2.1/.doctrees/output/botcore.site_api.doctree
index 110e18e9..90dd8cc8 100644
Binary files a/v7.2.1/.doctrees/output/botcore.site_api.doctree and b/v7.2.1/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.caching.doctree b/v7.2.1/.doctrees/output/botcore.utils.caching.doctree
index f0ab958f..4a2601e4 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.caching.doctree and b/v7.2.1/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.channel.doctree b/v7.2.1/.doctrees/output/botcore.utils.channel.doctree
index 2b678e47..c52225d5 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.channel.doctree and b/v7.2.1/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.doctree b/v7.2.1/.doctrees/output/botcore.utils.doctree
index ad18ec6e..3afcd11f 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.doctree and b/v7.2.1/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.logging.doctree b/v7.2.1/.doctrees/output/botcore.utils.logging.doctree
index c3574f1d..4d898e6d 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.logging.doctree and b/v7.2.1/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.members.doctree b/v7.2.1/.doctrees/output/botcore.utils.members.doctree
index 406d6a12..d2156430 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.members.doctree and b/v7.2.1/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.regex.doctree b/v7.2.1/.doctrees/output/botcore.utils.regex.doctree
index c6b20a11..caf7237b 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.regex.doctree and b/v7.2.1/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.scheduling.doctree b/v7.2.1/.doctrees/output/botcore.utils.scheduling.doctree
index 4fc47fe4..6e3ccc9c 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.2.1/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.2.1/changelog.html b/v7.2.1/changelog.html
index 079e7043..84e39d65 100644
--- a/v7.2.1/changelog.html
+++ b/v7.2.1/changelog.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/genindex.html b/v7.2.1/genindex.html
index c0fa7916..5b361317 100644
--- a/v7.2.1/genindex.html
+++ b/v7.2.1/genindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/index.html b/v7.2.1/index.html
index 003d2a74..deff8eb1 100644
--- a/v7.2.1/index.html
+++ b/v7.2.1/index.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.async_stats.html b/v7.2.1/output/botcore.async_stats.html
index be87d17c..85379536 100644
--- a/v7.2.1/output/botcore.async_stats.html
+++ b/v7.2.1/output/botcore.async_stats.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.exts.html b/v7.2.1/output/botcore.exts.html
index a04eca6a..912b2917 100644
--- a/v7.2.1/output/botcore.exts.html
+++ b/v7.2.1/output/botcore.exts.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.html b/v7.2.1/output/botcore.html
index 70885829..9377a423 100644
--- a/v7.2.1/output/botcore.html
+++ b/v7.2.1/output/botcore.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.site_api.html b/v7.2.1/output/botcore.site_api.html
index 90beefc2..a99b4290 100644
--- a/v7.2.1/output/botcore.site_api.html
+++ b/v7.2.1/output/botcore.site_api.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.utils.caching.html b/v7.2.1/output/botcore.utils.caching.html
index c2a74ba9..0f3371d2 100644
--- a/v7.2.1/output/botcore.utils.caching.html
+++ b/v7.2.1/output/botcore.utils.caching.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.utils.channel.html b/v7.2.1/output/botcore.utils.channel.html
index 77023589..0ad67636 100644
--- a/v7.2.1/output/botcore.utils.channel.html
+++ b/v7.2.1/output/botcore.utils.channel.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.utils.html b/v7.2.1/output/botcore.utils.html
index c83ce9c4..c5a275b2 100644
--- a/v7.2.1/output/botcore.utils.html
+++ b/v7.2.1/output/botcore.utils.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.utils.logging.html b/v7.2.1/output/botcore.utils.logging.html
index 49456a03..5506c076 100644
--- a/v7.2.1/output/botcore.utils.logging.html
+++ b/v7.2.1/output/botcore.utils.logging.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.utils.members.html b/v7.2.1/output/botcore.utils.members.html
index b60d4c1a..d39538ee 100644
--- a/v7.2.1/output/botcore.utils.members.html
+++ b/v7.2.1/output/botcore.utils.members.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.utils.regex.html b/v7.2.1/output/botcore.utils.regex.html
index 495355be..7a9e38ab 100644
--- a/v7.2.1/output/botcore.utils.regex.html
+++ b/v7.2.1/output/botcore.utils.regex.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/output/botcore.utils.scheduling.html b/v7.2.1/output/botcore.utils.scheduling.html
index 09360878..4d25ff21 100644
--- a/v7.2.1/output/botcore.utils.scheduling.html
+++ b/v7.2.1/output/botcore.utils.scheduling.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/py-modindex.html b/v7.2.1/py-modindex.html
index 555971f1..4ebe9612 100644
--- a/v7.2.1/py-modindex.html
+++ b/v7.2.1/py-modindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/search.html b/v7.2.1/search.html
index c943e6c6..8c5ebf3e 100644
--- a/v7.2.1/search.html
+++ b/v7.2.1/search.html
@@ -201,6 +201,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.1/versions.html b/v7.2.1/versions.html
index a58331a5..fb530b2d 100644
--- a/v7.2.1/versions.html
+++ b/v7.2.1/versions.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -338,6 +342,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.2.2/.buildinfo b/v7.2.2/.buildinfo
index c47769f8..8c23322a 100644
--- a/v7.2.2/.buildinfo
+++ b/v7.2.2/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: ef1cefaa28260cdbd469cf67fd873fd9
+config: be9695a388b7a7f6755702fcc8d22afd
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.2/.doctrees/changelog.doctree b/v7.2.2/.doctrees/changelog.doctree
index a219e296..7e2014e4 100644
Binary files a/v7.2.2/.doctrees/changelog.doctree and b/v7.2.2/.doctrees/changelog.doctree differ
diff --git a/v7.2.2/.doctrees/environment.pickle b/v7.2.2/.doctrees/environment.pickle
index 7060bd91..c73b5fef 100644
Binary files a/v7.2.2/.doctrees/environment.pickle and b/v7.2.2/.doctrees/environment.pickle differ
diff --git a/v7.2.2/.doctrees/index.doctree b/v7.2.2/.doctrees/index.doctree
index a06abb5e..651f565c 100644
Binary files a/v7.2.2/.doctrees/index.doctree and b/v7.2.2/.doctrees/index.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.async_stats.doctree b/v7.2.2/.doctrees/output/botcore.async_stats.doctree
index 9e5a2cbb..f997f464 100644
Binary files a/v7.2.2/.doctrees/output/botcore.async_stats.doctree and b/v7.2.2/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.doctree b/v7.2.2/.doctrees/output/botcore.doctree
index e8ed9893..c0f31890 100644
Binary files a/v7.2.2/.doctrees/output/botcore.doctree and b/v7.2.2/.doctrees/output/botcore.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.exts.doctree b/v7.2.2/.doctrees/output/botcore.exts.doctree
index ffa8a941..5a79e7b3 100644
Binary files a/v7.2.2/.doctrees/output/botcore.exts.doctree and b/v7.2.2/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.site_api.doctree b/v7.2.2/.doctrees/output/botcore.site_api.doctree
index ab6d2cad..dd4b4aab 100644
Binary files a/v7.2.2/.doctrees/output/botcore.site_api.doctree and b/v7.2.2/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.caching.doctree b/v7.2.2/.doctrees/output/botcore.utils.caching.doctree
index 9cfc61f9..a9a7f610 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.caching.doctree and b/v7.2.2/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.channel.doctree b/v7.2.2/.doctrees/output/botcore.utils.channel.doctree
index 33dacea6..02d1a14d 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.channel.doctree and b/v7.2.2/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.doctree b/v7.2.2/.doctrees/output/botcore.utils.doctree
index 6d1b72e1..b8cd8185 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.doctree and b/v7.2.2/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.logging.doctree b/v7.2.2/.doctrees/output/botcore.utils.logging.doctree
index e73d88c5..857d7160 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.logging.doctree and b/v7.2.2/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.members.doctree b/v7.2.2/.doctrees/output/botcore.utils.members.doctree
index 52b4dfa4..113917ee 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.members.doctree and b/v7.2.2/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.regex.doctree b/v7.2.2/.doctrees/output/botcore.utils.regex.doctree
index 9a0c432e..be5fda7a 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.regex.doctree and b/v7.2.2/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.scheduling.doctree b/v7.2.2/.doctrees/output/botcore.utils.scheduling.doctree
index a280a2fb..4fc5a5bf 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.2.2/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.2.2/changelog.html b/v7.2.2/changelog.html
index b2c0c939..503b5033 100644
--- a/v7.2.2/changelog.html
+++ b/v7.2.2/changelog.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/genindex.html b/v7.2.2/genindex.html
index 73891c3f..44f9fbd3 100644
--- a/v7.2.2/genindex.html
+++ b/v7.2.2/genindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/index.html b/v7.2.2/index.html
index 2b620e17..b0106a26 100644
--- a/v7.2.2/index.html
+++ b/v7.2.2/index.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.async_stats.html b/v7.2.2/output/botcore.async_stats.html
index 9a9fde43..08ddcbd8 100644
--- a/v7.2.2/output/botcore.async_stats.html
+++ b/v7.2.2/output/botcore.async_stats.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.exts.html b/v7.2.2/output/botcore.exts.html
index 4c078d3a..1037f2ca 100644
--- a/v7.2.2/output/botcore.exts.html
+++ b/v7.2.2/output/botcore.exts.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.html b/v7.2.2/output/botcore.html
index d2a1723c..4cf3e264 100644
--- a/v7.2.2/output/botcore.html
+++ b/v7.2.2/output/botcore.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.site_api.html b/v7.2.2/output/botcore.site_api.html
index 5477ae36..9982cd65 100644
--- a/v7.2.2/output/botcore.site_api.html
+++ b/v7.2.2/output/botcore.site_api.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.utils.caching.html b/v7.2.2/output/botcore.utils.caching.html
index dec2a6ce..aed7124b 100644
--- a/v7.2.2/output/botcore.utils.caching.html
+++ b/v7.2.2/output/botcore.utils.caching.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.utils.channel.html b/v7.2.2/output/botcore.utils.channel.html
index b0fa107d..7a133c7f 100644
--- a/v7.2.2/output/botcore.utils.channel.html
+++ b/v7.2.2/output/botcore.utils.channel.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.utils.html b/v7.2.2/output/botcore.utils.html
index 1f521085..68118d46 100644
--- a/v7.2.2/output/botcore.utils.html
+++ b/v7.2.2/output/botcore.utils.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.utils.logging.html b/v7.2.2/output/botcore.utils.logging.html
index 8b3f8591..07380856 100644
--- a/v7.2.2/output/botcore.utils.logging.html
+++ b/v7.2.2/output/botcore.utils.logging.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.utils.members.html b/v7.2.2/output/botcore.utils.members.html
index c23cd4d2..f23bf11d 100644
--- a/v7.2.2/output/botcore.utils.members.html
+++ b/v7.2.2/output/botcore.utils.members.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.utils.regex.html b/v7.2.2/output/botcore.utils.regex.html
index 806f60c7..d008e3c0 100644
--- a/v7.2.2/output/botcore.utils.regex.html
+++ b/v7.2.2/output/botcore.utils.regex.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/output/botcore.utils.scheduling.html b/v7.2.2/output/botcore.utils.scheduling.html
index c88dfd3d..0cee8b1e 100644
--- a/v7.2.2/output/botcore.utils.scheduling.html
+++ b/v7.2.2/output/botcore.utils.scheduling.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/py-modindex.html b/v7.2.2/py-modindex.html
index 7e1ea2c6..ee29625d 100644
--- a/v7.2.2/py-modindex.html
+++ b/v7.2.2/py-modindex.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/search.html b/v7.2.2/search.html
index b44d330b..4cd93844 100644
--- a/v7.2.2/search.html
+++ b/v7.2.2/search.html
@@ -201,6 +201,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.2.2/versions.html b/v7.2.2/versions.html
index 2ef9652b..64ee5dd1 100644
--- a/v7.2.2/versions.html
+++ b/v7.2.2/versions.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -338,6 +342,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.3.0/.buildinfo b/v7.3.0/.buildinfo
index 2eee8eb8..b4c1e23d 100644
--- a/v7.3.0/.buildinfo
+++ b/v7.3.0/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: a2cc23ebf3fd4475102d0c670bad87ce
+config: 960041de13e624aa70552942e5861cac
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.3.0/.doctrees/changelog.doctree b/v7.3.0/.doctrees/changelog.doctree
index 80a61d30..d3518858 100644
Binary files a/v7.3.0/.doctrees/changelog.doctree and b/v7.3.0/.doctrees/changelog.doctree differ
diff --git a/v7.3.0/.doctrees/environment.pickle b/v7.3.0/.doctrees/environment.pickle
index 3f97d2bc..b9340d6c 100644
Binary files a/v7.3.0/.doctrees/environment.pickle and b/v7.3.0/.doctrees/environment.pickle differ
diff --git a/v7.3.0/.doctrees/index.doctree b/v7.3.0/.doctrees/index.doctree
index fe01e408..0abe90ff 100644
Binary files a/v7.3.0/.doctrees/index.doctree and b/v7.3.0/.doctrees/index.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.async_stats.doctree b/v7.3.0/.doctrees/output/botcore.async_stats.doctree
index 600015c9..73151f6f 100644
Binary files a/v7.3.0/.doctrees/output/botcore.async_stats.doctree and b/v7.3.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.doctree b/v7.3.0/.doctrees/output/botcore.doctree
index 37a0fec8..836758f1 100644
Binary files a/v7.3.0/.doctrees/output/botcore.doctree and b/v7.3.0/.doctrees/output/botcore.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.exts.doctree b/v7.3.0/.doctrees/output/botcore.exts.doctree
index 9bfb409e..5e1d5b96 100644
Binary files a/v7.3.0/.doctrees/output/botcore.exts.doctree and b/v7.3.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.site_api.doctree b/v7.3.0/.doctrees/output/botcore.site_api.doctree
index 9f49f654..6f90dca8 100644
Binary files a/v7.3.0/.doctrees/output/botcore.site_api.doctree and b/v7.3.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.caching.doctree b/v7.3.0/.doctrees/output/botcore.utils.caching.doctree
index d47a0e0b..0f476775 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.caching.doctree and b/v7.3.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.channel.doctree b/v7.3.0/.doctrees/output/botcore.utils.channel.doctree
index ddf1567b..ddb6a3ca 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.channel.doctree and b/v7.3.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.doctree b/v7.3.0/.doctrees/output/botcore.utils.doctree
index cd453562..21c83a8c 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.doctree and b/v7.3.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.interactions.doctree b/v7.3.0/.doctrees/output/botcore.utils.interactions.doctree
index 2127b6b1..b4239e46 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.interactions.doctree and b/v7.3.0/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.logging.doctree b/v7.3.0/.doctrees/output/botcore.utils.logging.doctree
index a38180aa..bca792f7 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.logging.doctree and b/v7.3.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.members.doctree b/v7.3.0/.doctrees/output/botcore.utils.members.doctree
index 910e63c3..f46b489c 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.members.doctree and b/v7.3.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.regex.doctree b/v7.3.0/.doctrees/output/botcore.utils.regex.doctree
index a8656dfd..a0c2ddb4 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.regex.doctree and b/v7.3.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.scheduling.doctree b/v7.3.0/.doctrees/output/botcore.utils.scheduling.doctree
index 02a7b88b..09542ac1 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.3.0/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.3.0/changelog.html b/v7.3.0/changelog.html
index b43e4055..e228a55d 100644
--- a/v7.3.0/changelog.html
+++ b/v7.3.0/changelog.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/genindex.html b/v7.3.0/genindex.html
index 942befa5..f0b23c76 100644
--- a/v7.3.0/genindex.html
+++ b/v7.3.0/genindex.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/index.html b/v7.3.0/index.html
index 65fbde73..0b9d94bb 100644
--- a/v7.3.0/index.html
+++ b/v7.3.0/index.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.async_stats.html b/v7.3.0/output/botcore.async_stats.html
index 6c24dbf2..6e6f0f3f 100644
--- a/v7.3.0/output/botcore.async_stats.html
+++ b/v7.3.0/output/botcore.async_stats.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.exts.html b/v7.3.0/output/botcore.exts.html
index 382b8844..2b398bb2 100644
--- a/v7.3.0/output/botcore.exts.html
+++ b/v7.3.0/output/botcore.exts.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.html b/v7.3.0/output/botcore.html
index 2d9de9b0..6218f6d7 100644
--- a/v7.3.0/output/botcore.html
+++ b/v7.3.0/output/botcore.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.site_api.html b/v7.3.0/output/botcore.site_api.html
index af47d48b..cf3adcd1 100644
--- a/v7.3.0/output/botcore.site_api.html
+++ b/v7.3.0/output/botcore.site_api.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.utils.caching.html b/v7.3.0/output/botcore.utils.caching.html
index a13c3329..36bdf9c5 100644
--- a/v7.3.0/output/botcore.utils.caching.html
+++ b/v7.3.0/output/botcore.utils.caching.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.utils.channel.html b/v7.3.0/output/botcore.utils.channel.html
index 459a7ea1..40274a51 100644
--- a/v7.3.0/output/botcore.utils.channel.html
+++ b/v7.3.0/output/botcore.utils.channel.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.utils.html b/v7.3.0/output/botcore.utils.html
index 214b8bf9..519676e2 100644
--- a/v7.3.0/output/botcore.utils.html
+++ b/v7.3.0/output/botcore.utils.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.utils.interactions.html b/v7.3.0/output/botcore.utils.interactions.html
index a318a90b..d900ddf3 100644
--- a/v7.3.0/output/botcore.utils.interactions.html
+++ b/v7.3.0/output/botcore.utils.interactions.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.utils.logging.html b/v7.3.0/output/botcore.utils.logging.html
index a889db28..21212938 100644
--- a/v7.3.0/output/botcore.utils.logging.html
+++ b/v7.3.0/output/botcore.utils.logging.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.utils.members.html b/v7.3.0/output/botcore.utils.members.html
index 46d7e149..d88cdc0a 100644
--- a/v7.3.0/output/botcore.utils.members.html
+++ b/v7.3.0/output/botcore.utils.members.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.utils.regex.html b/v7.3.0/output/botcore.utils.regex.html
index ed892da1..7f5fdf2f 100644
--- a/v7.3.0/output/botcore.utils.regex.html
+++ b/v7.3.0/output/botcore.utils.regex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/output/botcore.utils.scheduling.html b/v7.3.0/output/botcore.utils.scheduling.html
index bfd1a9f1..1adafd8f 100644
--- a/v7.3.0/output/botcore.utils.scheduling.html
+++ b/v7.3.0/output/botcore.utils.scheduling.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/py-modindex.html b/v7.3.0/py-modindex.html
index 909f84f9..5c8bf9e4 100644
--- a/v7.3.0/py-modindex.html
+++ b/v7.3.0/py-modindex.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/search.html b/v7.3.0/search.html
index 27b387a2..02c83f7c 100644
--- a/v7.3.0/search.html
+++ b/v7.3.0/search.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.0/versions.html b/v7.3.0/versions.html
index f7605d87..6afcc687 100644
--- a/v7.3.0/versions.html
+++ b/v7.3.0/versions.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -339,6 +343,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.3.1/.buildinfo b/v7.3.1/.buildinfo
index caeac68d..c1b05c10 100644
--- a/v7.3.1/.buildinfo
+++ b/v7.3.1/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: d21b576352d4c31a76f50518fab5402e
+config: 5572b21e2b94d9889dab0df0659337b6
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.3.1/.doctrees/changelog.doctree b/v7.3.1/.doctrees/changelog.doctree
index e771e4f2..18f13847 100644
Binary files a/v7.3.1/.doctrees/changelog.doctree and b/v7.3.1/.doctrees/changelog.doctree differ
diff --git a/v7.3.1/.doctrees/environment.pickle b/v7.3.1/.doctrees/environment.pickle
index 5c5e61b5..ae4ab398 100644
Binary files a/v7.3.1/.doctrees/environment.pickle and b/v7.3.1/.doctrees/environment.pickle differ
diff --git a/v7.3.1/.doctrees/index.doctree b/v7.3.1/.doctrees/index.doctree
index 2984f18c..513380ac 100644
Binary files a/v7.3.1/.doctrees/index.doctree and b/v7.3.1/.doctrees/index.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.async_stats.doctree b/v7.3.1/.doctrees/output/botcore.async_stats.doctree
index c10cdc27..3232c8c9 100644
Binary files a/v7.3.1/.doctrees/output/botcore.async_stats.doctree and b/v7.3.1/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.doctree b/v7.3.1/.doctrees/output/botcore.doctree
index 3f6dfc80..a670c0c2 100644
Binary files a/v7.3.1/.doctrees/output/botcore.doctree and b/v7.3.1/.doctrees/output/botcore.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.exts.doctree b/v7.3.1/.doctrees/output/botcore.exts.doctree
index bd7eea3b..e4b076c7 100644
Binary files a/v7.3.1/.doctrees/output/botcore.exts.doctree and b/v7.3.1/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.site_api.doctree b/v7.3.1/.doctrees/output/botcore.site_api.doctree
index 9b1c0cfb..0bba30ae 100644
Binary files a/v7.3.1/.doctrees/output/botcore.site_api.doctree and b/v7.3.1/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.caching.doctree b/v7.3.1/.doctrees/output/botcore.utils.caching.doctree
index 3508e393..7c6216a9 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.caching.doctree and b/v7.3.1/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.channel.doctree b/v7.3.1/.doctrees/output/botcore.utils.channel.doctree
index bbaf0651..fad3c683 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.channel.doctree and b/v7.3.1/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.doctree b/v7.3.1/.doctrees/output/botcore.utils.doctree
index 8f31b402..b7982b05 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.doctree and b/v7.3.1/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.interactions.doctree b/v7.3.1/.doctrees/output/botcore.utils.interactions.doctree
index cc79e130..a6f1cc8c 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.interactions.doctree and b/v7.3.1/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.logging.doctree b/v7.3.1/.doctrees/output/botcore.utils.logging.doctree
index b8cc203c..a7a7309c 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.logging.doctree and b/v7.3.1/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.members.doctree b/v7.3.1/.doctrees/output/botcore.utils.members.doctree
index d645d4cc..ee6d5940 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.members.doctree and b/v7.3.1/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.regex.doctree b/v7.3.1/.doctrees/output/botcore.utils.regex.doctree
index 873c204c..dc5f31b2 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.regex.doctree and b/v7.3.1/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.scheduling.doctree b/v7.3.1/.doctrees/output/botcore.utils.scheduling.doctree
index 63af689a..ae18540d 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.3.1/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.3.1/changelog.html b/v7.3.1/changelog.html
index b149b66d..c9cf6849 100644
--- a/v7.3.1/changelog.html
+++ b/v7.3.1/changelog.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/genindex.html b/v7.3.1/genindex.html
index 1012ea44..655509a2 100644
--- a/v7.3.1/genindex.html
+++ b/v7.3.1/genindex.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/index.html b/v7.3.1/index.html
index dc986059..d2997ab1 100644
--- a/v7.3.1/index.html
+++ b/v7.3.1/index.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.async_stats.html b/v7.3.1/output/botcore.async_stats.html
index 92c0992b..862607eb 100644
--- a/v7.3.1/output/botcore.async_stats.html
+++ b/v7.3.1/output/botcore.async_stats.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.exts.html b/v7.3.1/output/botcore.exts.html
index 932fdfeb..21875d26 100644
--- a/v7.3.1/output/botcore.exts.html
+++ b/v7.3.1/output/botcore.exts.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.html b/v7.3.1/output/botcore.html
index 76e410bb..1a617a94 100644
--- a/v7.3.1/output/botcore.html
+++ b/v7.3.1/output/botcore.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.site_api.html b/v7.3.1/output/botcore.site_api.html
index 6fb6a820..a369647f 100644
--- a/v7.3.1/output/botcore.site_api.html
+++ b/v7.3.1/output/botcore.site_api.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.utils.caching.html b/v7.3.1/output/botcore.utils.caching.html
index a93f09e4..a6261580 100644
--- a/v7.3.1/output/botcore.utils.caching.html
+++ b/v7.3.1/output/botcore.utils.caching.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.utils.channel.html b/v7.3.1/output/botcore.utils.channel.html
index d1bf2daf..83d34990 100644
--- a/v7.3.1/output/botcore.utils.channel.html
+++ b/v7.3.1/output/botcore.utils.channel.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.utils.html b/v7.3.1/output/botcore.utils.html
index 8635abec..8c3ffe10 100644
--- a/v7.3.1/output/botcore.utils.html
+++ b/v7.3.1/output/botcore.utils.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.utils.interactions.html b/v7.3.1/output/botcore.utils.interactions.html
index d32fcb93..42c77165 100644
--- a/v7.3.1/output/botcore.utils.interactions.html
+++ b/v7.3.1/output/botcore.utils.interactions.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.utils.logging.html b/v7.3.1/output/botcore.utils.logging.html
index 85c701a4..6ff6d63e 100644
--- a/v7.3.1/output/botcore.utils.logging.html
+++ b/v7.3.1/output/botcore.utils.logging.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.utils.members.html b/v7.3.1/output/botcore.utils.members.html
index 1653d128..f0c2b7f0 100644
--- a/v7.3.1/output/botcore.utils.members.html
+++ b/v7.3.1/output/botcore.utils.members.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.utils.regex.html b/v7.3.1/output/botcore.utils.regex.html
index c217b34d..3eb5c4ba 100644
--- a/v7.3.1/output/botcore.utils.regex.html
+++ b/v7.3.1/output/botcore.utils.regex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/output/botcore.utils.scheduling.html b/v7.3.1/output/botcore.utils.scheduling.html
index c718bb4b..eb8cccfc 100644
--- a/v7.3.1/output/botcore.utils.scheduling.html
+++ b/v7.3.1/output/botcore.utils.scheduling.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/py-modindex.html b/v7.3.1/py-modindex.html
index afcdb429..ea18069b 100644
--- a/v7.3.1/py-modindex.html
+++ b/v7.3.1/py-modindex.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/search.html b/v7.3.1/search.html
index 30aaf578..8c0edf42 100644
--- a/v7.3.1/search.html
+++ b/v7.3.1/search.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.3.1/versions.html b/v7.3.1/versions.html
index 56c55b6d..a94576e5 100644
--- a/v7.3.1/versions.html
+++ b/v7.3.1/versions.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -339,6 +343,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/.buildinfo b/v7.4.0-beta1/.buildinfo
index c442140a..55910cb4 100644
--- a/v7.4.0-beta1/.buildinfo
+++ b/v7.4.0-beta1/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 470018e49d2cae4740c13f2c4ba83dc3
+config: d04352f33041a331cba6543e43980c6b
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.4.0-beta1/.doctrees/changelog.doctree b/v7.4.0-beta1/.doctrees/changelog.doctree
index 8a8bc1db..ac3734ed 100644
Binary files a/v7.4.0-beta1/.doctrees/changelog.doctree and b/v7.4.0-beta1/.doctrees/changelog.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/environment.pickle b/v7.4.0-beta1/.doctrees/environment.pickle
index 167f18ee..528a2577 100644
Binary files a/v7.4.0-beta1/.doctrees/environment.pickle and b/v7.4.0-beta1/.doctrees/environment.pickle differ
diff --git a/v7.4.0-beta1/.doctrees/index.doctree b/v7.4.0-beta1/.doctrees/index.doctree
index 4724bac6..f6adc5f0 100644
Binary files a/v7.4.0-beta1/.doctrees/index.doctree and b/v7.4.0-beta1/.doctrees/index.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.async_stats.doctree b/v7.4.0-beta1/.doctrees/output/botcore.async_stats.doctree
index 30897b0b..016bd9b7 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.async_stats.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.doctree b/v7.4.0-beta1/.doctrees/output/botcore.doctree
index 40515fa3..d940f5ad 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.exts.doctree b/v7.4.0-beta1/.doctrees/output/botcore.exts.doctree
index 572d7842..e500345a 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.exts.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.site_api.doctree b/v7.4.0-beta1/.doctrees/output/botcore.site_api.doctree
index e210deac..55154ca9 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.site_api.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.caching.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.caching.doctree
index 14c03102..66d4b12e 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.caching.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.channel.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.channel.doctree
index af0d80a9..e21e4795 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.channel.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.doctree
index 9190a504..117542a9 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.interactions.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.interactions.doctree
index 85e4cff4..efe02c39 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.interactions.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.logging.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.logging.doctree
index a633b7b6..cf5ca473 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.logging.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.members.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.members.doctree
index d2fc3b96..32c957ea 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.members.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.regex.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.regex.doctree
index 14d5b922..c3d0ed77 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.regex.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.scheduling.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.scheduling.doctree
index c502a55c..9a149191 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.4.0-beta1/changelog.html b/v7.4.0-beta1/changelog.html
index 347b8aaa..ec0ddec8 100644
--- a/v7.4.0-beta1/changelog.html
+++ b/v7.4.0-beta1/changelog.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/genindex.html b/v7.4.0-beta1/genindex.html
index 4e29cf76..d5a25fb5 100644
--- a/v7.4.0-beta1/genindex.html
+++ b/v7.4.0-beta1/genindex.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/index.html b/v7.4.0-beta1/index.html
index 911e9ab2..8e6a92ad 100644
--- a/v7.4.0-beta1/index.html
+++ b/v7.4.0-beta1/index.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.async_stats.html b/v7.4.0-beta1/output/botcore.async_stats.html
index 11966f13..4199f6bc 100644
--- a/v7.4.0-beta1/output/botcore.async_stats.html
+++ b/v7.4.0-beta1/output/botcore.async_stats.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.exts.html b/v7.4.0-beta1/output/botcore.exts.html
index 5d445298..00f9698a 100644
--- a/v7.4.0-beta1/output/botcore.exts.html
+++ b/v7.4.0-beta1/output/botcore.exts.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.html b/v7.4.0-beta1/output/botcore.html
index a0179e9d..2381e9e4 100644
--- a/v7.4.0-beta1/output/botcore.html
+++ b/v7.4.0-beta1/output/botcore.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.site_api.html b/v7.4.0-beta1/output/botcore.site_api.html
index 1001d4c4..7c811aa6 100644
--- a/v7.4.0-beta1/output/botcore.site_api.html
+++ b/v7.4.0-beta1/output/botcore.site_api.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.utils.caching.html b/v7.4.0-beta1/output/botcore.utils.caching.html
index 4e8022a8..047ba430 100644
--- a/v7.4.0-beta1/output/botcore.utils.caching.html
+++ b/v7.4.0-beta1/output/botcore.utils.caching.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.utils.channel.html b/v7.4.0-beta1/output/botcore.utils.channel.html
index 0e53e31e..1976bba7 100644
--- a/v7.4.0-beta1/output/botcore.utils.channel.html
+++ b/v7.4.0-beta1/output/botcore.utils.channel.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.utils.html b/v7.4.0-beta1/output/botcore.utils.html
index 02c208d7..b862f3c5 100644
--- a/v7.4.0-beta1/output/botcore.utils.html
+++ b/v7.4.0-beta1/output/botcore.utils.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.utils.interactions.html b/v7.4.0-beta1/output/botcore.utils.interactions.html
index 0690963d..7c1142cc 100644
--- a/v7.4.0-beta1/output/botcore.utils.interactions.html
+++ b/v7.4.0-beta1/output/botcore.utils.interactions.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.utils.logging.html b/v7.4.0-beta1/output/botcore.utils.logging.html
index c697361b..985d68b3 100644
--- a/v7.4.0-beta1/output/botcore.utils.logging.html
+++ b/v7.4.0-beta1/output/botcore.utils.logging.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.utils.members.html b/v7.4.0-beta1/output/botcore.utils.members.html
index 2ce9991f..8bc6855f 100644
--- a/v7.4.0-beta1/output/botcore.utils.members.html
+++ b/v7.4.0-beta1/output/botcore.utils.members.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.utils.regex.html b/v7.4.0-beta1/output/botcore.utils.regex.html
index de503759..5582f48b 100644
--- a/v7.4.0-beta1/output/botcore.utils.regex.html
+++ b/v7.4.0-beta1/output/botcore.utils.regex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/output/botcore.utils.scheduling.html b/v7.4.0-beta1/output/botcore.utils.scheduling.html
index 78fe7901..27620d03 100644
--- a/v7.4.0-beta1/output/botcore.utils.scheduling.html
+++ b/v7.4.0-beta1/output/botcore.utils.scheduling.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/py-modindex.html b/v7.4.0-beta1/py-modindex.html
index e77ed1d1..9dd455f0 100644
--- a/v7.4.0-beta1/py-modindex.html
+++ b/v7.4.0-beta1/py-modindex.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/search.html b/v7.4.0-beta1/search.html
index 1f5b1d2b..264cdf58 100644
--- a/v7.4.0-beta1/search.html
+++ b/v7.4.0-beta1/search.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0-beta1/versions.html b/v7.4.0-beta1/versions.html
index 332bd4c8..c6388406 100644
--- a/v7.4.0-beta1/versions.html
+++ b/v7.4.0-beta1/versions.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -339,6 +343,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.4.0/.buildinfo b/v7.4.0/.buildinfo
index 765f7f2d..4bda6c75 100644
--- a/v7.4.0/.buildinfo
+++ b/v7.4.0/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 9b2a31d646b0a847325f810aa2fbb868
+config: 70da3b8c9cf1e341a329bd9d7ff16ebb
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.4.0/.doctrees/changelog.doctree b/v7.4.0/.doctrees/changelog.doctree
index 35d5aabb..44bcb932 100644
Binary files a/v7.4.0/.doctrees/changelog.doctree and b/v7.4.0/.doctrees/changelog.doctree differ
diff --git a/v7.4.0/.doctrees/environment.pickle b/v7.4.0/.doctrees/environment.pickle
index 44951b91..e42c8dd9 100644
Binary files a/v7.4.0/.doctrees/environment.pickle and b/v7.4.0/.doctrees/environment.pickle differ
diff --git a/v7.4.0/.doctrees/index.doctree b/v7.4.0/.doctrees/index.doctree
index c7687e3c..b65ed7a5 100644
Binary files a/v7.4.0/.doctrees/index.doctree and b/v7.4.0/.doctrees/index.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.async_stats.doctree b/v7.4.0/.doctrees/output/botcore.async_stats.doctree
index 68223cbd..c61bfbcb 100644
Binary files a/v7.4.0/.doctrees/output/botcore.async_stats.doctree and b/v7.4.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.doctree b/v7.4.0/.doctrees/output/botcore.doctree
index c58d41c9..7596c134 100644
Binary files a/v7.4.0/.doctrees/output/botcore.doctree and b/v7.4.0/.doctrees/output/botcore.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.exts.doctree b/v7.4.0/.doctrees/output/botcore.exts.doctree
index c3f28f34..bc724ba6 100644
Binary files a/v7.4.0/.doctrees/output/botcore.exts.doctree and b/v7.4.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.site_api.doctree b/v7.4.0/.doctrees/output/botcore.site_api.doctree
index d59c5990..b0c72028 100644
Binary files a/v7.4.0/.doctrees/output/botcore.site_api.doctree and b/v7.4.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.caching.doctree b/v7.4.0/.doctrees/output/botcore.utils.caching.doctree
index ae2d39a5..8cff3ee4 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.caching.doctree and b/v7.4.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.channel.doctree b/v7.4.0/.doctrees/output/botcore.utils.channel.doctree
index 412be71d..235273fa 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.channel.doctree and b/v7.4.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.doctree b/v7.4.0/.doctrees/output/botcore.utils.doctree
index 72e3ed43..d3bd7a29 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.doctree and b/v7.4.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.interactions.doctree b/v7.4.0/.doctrees/output/botcore.utils.interactions.doctree
index 86d78e8f..73fa5051 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.interactions.doctree and b/v7.4.0/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.logging.doctree b/v7.4.0/.doctrees/output/botcore.utils.logging.doctree
index 426bfb7d..e18c6b23 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.logging.doctree and b/v7.4.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.members.doctree b/v7.4.0/.doctrees/output/botcore.utils.members.doctree
index a2435024..0177ef0b 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.members.doctree and b/v7.4.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.regex.doctree b/v7.4.0/.doctrees/output/botcore.utils.regex.doctree
index aa6cff41..5a3b10db 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.regex.doctree and b/v7.4.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.scheduling.doctree b/v7.4.0/.doctrees/output/botcore.utils.scheduling.doctree
index f59a3766..00da0e7c 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.4.0/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.4.0/changelog.html b/v7.4.0/changelog.html
index 596081a3..5e285cb2 100644
--- a/v7.4.0/changelog.html
+++ b/v7.4.0/changelog.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/genindex.html b/v7.4.0/genindex.html
index 7c5bc1ff..5988c978 100644
--- a/v7.4.0/genindex.html
+++ b/v7.4.0/genindex.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/index.html b/v7.4.0/index.html
index 1591bc50..df6a722d 100644
--- a/v7.4.0/index.html
+++ b/v7.4.0/index.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.async_stats.html b/v7.4.0/output/botcore.async_stats.html
index dca1852d..1d70e4d0 100644
--- a/v7.4.0/output/botcore.async_stats.html
+++ b/v7.4.0/output/botcore.async_stats.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.exts.html b/v7.4.0/output/botcore.exts.html
index 42704513..4850d54a 100644
--- a/v7.4.0/output/botcore.exts.html
+++ b/v7.4.0/output/botcore.exts.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.html b/v7.4.0/output/botcore.html
index 4518b68a..755fa72b 100644
--- a/v7.4.0/output/botcore.html
+++ b/v7.4.0/output/botcore.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.site_api.html b/v7.4.0/output/botcore.site_api.html
index dd0261c4..408ce4eb 100644
--- a/v7.4.0/output/botcore.site_api.html
+++ b/v7.4.0/output/botcore.site_api.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.utils.caching.html b/v7.4.0/output/botcore.utils.caching.html
index b477e561..1df73881 100644
--- a/v7.4.0/output/botcore.utils.caching.html
+++ b/v7.4.0/output/botcore.utils.caching.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.utils.channel.html b/v7.4.0/output/botcore.utils.channel.html
index e03e3370..37fb5bb1 100644
--- a/v7.4.0/output/botcore.utils.channel.html
+++ b/v7.4.0/output/botcore.utils.channel.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.utils.html b/v7.4.0/output/botcore.utils.html
index 0db22c79..60bf4734 100644
--- a/v7.4.0/output/botcore.utils.html
+++ b/v7.4.0/output/botcore.utils.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.utils.interactions.html b/v7.4.0/output/botcore.utils.interactions.html
index 9a934d46..5f4b939e 100644
--- a/v7.4.0/output/botcore.utils.interactions.html
+++ b/v7.4.0/output/botcore.utils.interactions.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.utils.logging.html b/v7.4.0/output/botcore.utils.logging.html
index 9c4ee67d..0403131b 100644
--- a/v7.4.0/output/botcore.utils.logging.html
+++ b/v7.4.0/output/botcore.utils.logging.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.utils.members.html b/v7.4.0/output/botcore.utils.members.html
index a4f7b401..05dd516c 100644
--- a/v7.4.0/output/botcore.utils.members.html
+++ b/v7.4.0/output/botcore.utils.members.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.utils.regex.html b/v7.4.0/output/botcore.utils.regex.html
index 65321f65..7a42133f 100644
--- a/v7.4.0/output/botcore.utils.regex.html
+++ b/v7.4.0/output/botcore.utils.regex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/output/botcore.utils.scheduling.html b/v7.4.0/output/botcore.utils.scheduling.html
index 2180de6d..de75458f 100644
--- a/v7.4.0/output/botcore.utils.scheduling.html
+++ b/v7.4.0/output/botcore.utils.scheduling.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/py-modindex.html b/v7.4.0/py-modindex.html
index e1d8ab95..4f527c5a 100644
--- a/v7.4.0/py-modindex.html
+++ b/v7.4.0/py-modindex.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/search.html b/v7.4.0/search.html
index f2a9438d..1e936283 100644
--- a/v7.4.0/search.html
+++ b/v7.4.0/search.html
@@ -202,6 +202,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.4.0/versions.html b/v7.4.0/versions.html
index deb83324..5822addb 100644
--- a/v7.4.0/versions.html
+++ b/v7.4.0/versions.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -339,6 +343,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v7.5.0/.buildinfo b/v7.5.0/.buildinfo
index 63f2ee25..79ab057a 100644
--- a/v7.5.0/.buildinfo
+++ b/v7.5.0/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 37f6b51f8e66517ab294a313029d538e
+config: a072adcfbf320838d253c64eba4e33a1
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.5.0/.doctrees/changelog.doctree b/v7.5.0/.doctrees/changelog.doctree
index dcdd518e..5b257af3 100644
Binary files a/v7.5.0/.doctrees/changelog.doctree and b/v7.5.0/.doctrees/changelog.doctree differ
diff --git a/v7.5.0/.doctrees/environment.pickle b/v7.5.0/.doctrees/environment.pickle
index 3f607a9b..0114b106 100644
Binary files a/v7.5.0/.doctrees/environment.pickle and b/v7.5.0/.doctrees/environment.pickle differ
diff --git a/v7.5.0/.doctrees/index.doctree b/v7.5.0/.doctrees/index.doctree
index a835d11f..aec11417 100644
Binary files a/v7.5.0/.doctrees/index.doctree and b/v7.5.0/.doctrees/index.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.async_stats.doctree b/v7.5.0/.doctrees/output/botcore.async_stats.doctree
index d27d884a..aefb0c18 100644
Binary files a/v7.5.0/.doctrees/output/botcore.async_stats.doctree and b/v7.5.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.doctree b/v7.5.0/.doctrees/output/botcore.doctree
index 569ba986..20bbdf30 100644
Binary files a/v7.5.0/.doctrees/output/botcore.doctree and b/v7.5.0/.doctrees/output/botcore.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.exts.doctree b/v7.5.0/.doctrees/output/botcore.exts.doctree
index 2e68bdf0..bb5fd063 100644
Binary files a/v7.5.0/.doctrees/output/botcore.exts.doctree and b/v7.5.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.site_api.doctree b/v7.5.0/.doctrees/output/botcore.site_api.doctree
index 6a30db75..b63e4cdb 100644
Binary files a/v7.5.0/.doctrees/output/botcore.site_api.doctree and b/v7.5.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.caching.doctree b/v7.5.0/.doctrees/output/botcore.utils.caching.doctree
index 50fc8673..1f47814d 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.caching.doctree and b/v7.5.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.channel.doctree b/v7.5.0/.doctrees/output/botcore.utils.channel.doctree
index 03a4cb2b..e004549f 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.channel.doctree and b/v7.5.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.commands.doctree b/v7.5.0/.doctrees/output/botcore.utils.commands.doctree
index 3a752764..2c08ce12 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.commands.doctree and b/v7.5.0/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.doctree b/v7.5.0/.doctrees/output/botcore.utils.doctree
index b2b9c943..90e66973 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.doctree and b/v7.5.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.interactions.doctree b/v7.5.0/.doctrees/output/botcore.utils.interactions.doctree
index 22d0d25e..c76747a4 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.interactions.doctree and b/v7.5.0/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.logging.doctree b/v7.5.0/.doctrees/output/botcore.utils.logging.doctree
index 503de12c..2343aa67 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.logging.doctree and b/v7.5.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.members.doctree b/v7.5.0/.doctrees/output/botcore.utils.members.doctree
index b9193dd5..770a557c 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.members.doctree and b/v7.5.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.regex.doctree b/v7.5.0/.doctrees/output/botcore.utils.regex.doctree
index 3a5d5f16..b28548b7 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.regex.doctree and b/v7.5.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.scheduling.doctree b/v7.5.0/.doctrees/output/botcore.utils.scheduling.doctree
index 21e84d74..b4f05ab3 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.5.0/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.5.0/changelog.html b/v7.5.0/changelog.html
index 0d8544a6..08c30692 100644
--- a/v7.5.0/changelog.html
+++ b/v7.5.0/changelog.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/genindex.html b/v7.5.0/genindex.html
index 75b94d80..7c7f71af 100644
--- a/v7.5.0/genindex.html
+++ b/v7.5.0/genindex.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/index.html b/v7.5.0/index.html
index b5c350ae..441283aa 100644
--- a/v7.5.0/index.html
+++ b/v7.5.0/index.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.async_stats.html b/v7.5.0/output/botcore.async_stats.html
index 234b4bcb..d45e1f03 100644
--- a/v7.5.0/output/botcore.async_stats.html
+++ b/v7.5.0/output/botcore.async_stats.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.exts.html b/v7.5.0/output/botcore.exts.html
index 6b06646f..46a089d3 100644
--- a/v7.5.0/output/botcore.exts.html
+++ b/v7.5.0/output/botcore.exts.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.html b/v7.5.0/output/botcore.html
index 85c0458a..26d29346 100644
--- a/v7.5.0/output/botcore.html
+++ b/v7.5.0/output/botcore.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.site_api.html b/v7.5.0/output/botcore.site_api.html
index eb9703c3..d2a3d266 100644
--- a/v7.5.0/output/botcore.site_api.html
+++ b/v7.5.0/output/botcore.site_api.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.utils.caching.html b/v7.5.0/output/botcore.utils.caching.html
index c4b6369a..fce6ab95 100644
--- a/v7.5.0/output/botcore.utils.caching.html
+++ b/v7.5.0/output/botcore.utils.caching.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.utils.channel.html b/v7.5.0/output/botcore.utils.channel.html
index 5b67ee2b..b5dc2a7e 100644
--- a/v7.5.0/output/botcore.utils.channel.html
+++ b/v7.5.0/output/botcore.utils.channel.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.utils.commands.html b/v7.5.0/output/botcore.utils.commands.html
index 2a577ddf..38148fdf 100644
--- a/v7.5.0/output/botcore.utils.commands.html
+++ b/v7.5.0/output/botcore.utils.commands.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.utils.html b/v7.5.0/output/botcore.utils.html
index c688365f..0f991254 100644
--- a/v7.5.0/output/botcore.utils.html
+++ b/v7.5.0/output/botcore.utils.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.utils.interactions.html b/v7.5.0/output/botcore.utils.interactions.html
index 1c81a264..9c2b097b 100644
--- a/v7.5.0/output/botcore.utils.interactions.html
+++ b/v7.5.0/output/botcore.utils.interactions.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.utils.logging.html b/v7.5.0/output/botcore.utils.logging.html
index 92c4aa25..e3af7490 100644
--- a/v7.5.0/output/botcore.utils.logging.html
+++ b/v7.5.0/output/botcore.utils.logging.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.utils.members.html b/v7.5.0/output/botcore.utils.members.html
index 4deb7cab..78438b78 100644
--- a/v7.5.0/output/botcore.utils.members.html
+++ b/v7.5.0/output/botcore.utils.members.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.utils.regex.html b/v7.5.0/output/botcore.utils.regex.html
index 934fa33b..b36032f2 100644
--- a/v7.5.0/output/botcore.utils.regex.html
+++ b/v7.5.0/output/botcore.utils.regex.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/output/botcore.utils.scheduling.html b/v7.5.0/output/botcore.utils.scheduling.html
index 21576109..0a662cd5 100644
--- a/v7.5.0/output/botcore.utils.scheduling.html
+++ b/v7.5.0/output/botcore.utils.scheduling.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/py-modindex.html b/v7.5.0/py-modindex.html
index 79dd2dff..60be6253 100644
--- a/v7.5.0/py-modindex.html
+++ b/v7.5.0/py-modindex.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/search.html b/v7.5.0/search.html
index 195384e1..02a32918 100644
--- a/v7.5.0/search.html
+++ b/v7.5.0/search.html
@@ -203,6 +203,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v7.5.0/versions.html b/v7.5.0/versions.html
index 0d5b36f8..38bb2831 100644
--- a/v7.5.0/versions.html
+++ b/v7.5.0/versions.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -340,6 +344,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/.buildinfo b/v8.0.0-beta.1/.buildinfo
index d7ab452d..73593b51 100644
--- a/v8.0.0-beta.1/.buildinfo
+++ b/v8.0.0-beta.1/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 550cecab5f8e0eff1c415cd557aa9f41
+config: 21062d1b0aec309c1120d0d2986f12b7
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v8.0.0-beta.1/.doctrees/changelog.doctree b/v8.0.0-beta.1/.doctrees/changelog.doctree
index 61dbe6f5..32efa982 100644
Binary files a/v8.0.0-beta.1/.doctrees/changelog.doctree and b/v8.0.0-beta.1/.doctrees/changelog.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/development.doctree b/v8.0.0-beta.1/.doctrees/development.doctree
index a5afb721..e7677eb9 100644
Binary files a/v8.0.0-beta.1/.doctrees/development.doctree and b/v8.0.0-beta.1/.doctrees/development.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/environment.pickle b/v8.0.0-beta.1/.doctrees/environment.pickle
index 80363679..9275d974 100644
Binary files a/v8.0.0-beta.1/.doctrees/environment.pickle and b/v8.0.0-beta.1/.doctrees/environment.pickle differ
diff --git a/v8.0.0-beta.1/.doctrees/index.doctree b/v8.0.0-beta.1/.doctrees/index.doctree
index bab63bae..05134a17 100644
Binary files a/v8.0.0-beta.1/.doctrees/index.doctree and b/v8.0.0-beta.1/.doctrees/index.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.async_stats.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.async_stats.doctree
index a2f401f2..98b2ca58 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.async_stats.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.doctree
index a7c169f9..b01136d1 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.exts.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.exts.doctree
index fd2b108d..0fe8c66d 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.exts.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.exts.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.site_api.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.site_api.doctree
index a3b55896..6c3bb6d8 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.site_api.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.caching.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.caching.doctree
index c67ed64f..ab5dfa26 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.caching.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.channel.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.channel.doctree
index 07aedb56..f8100d29 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.channel.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.commands.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.commands.doctree
index 47bf5089..43d8c2da 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.commands.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.doctree
index 32750dbc..8a07308a 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.interactions.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.interactions.doctree
index 91f98e55..97c39be2 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.interactions.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.logging.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.logging.doctree
index 518962ce..c9c7ca8a 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.logging.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.members.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.members.doctree
index c6e763db..ded4a12b 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.members.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.regex.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.regex.doctree
index 63d4a2ad..5a9923f2 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.regex.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.scheduling.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.scheduling.doctree
index 83c6b407..42f0dae1 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.scheduling.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v8.0.0-beta.1/changelog.html b/v8.0.0-beta.1/changelog.html
index 7f24be4b..9284148b 100644
--- a/v8.0.0-beta.1/changelog.html
+++ b/v8.0.0-beta.1/changelog.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/development.html b/v8.0.0-beta.1/development.html
index 8792fa46..17917ee8 100644
--- a/v8.0.0-beta.1/development.html
+++ b/v8.0.0-beta.1/development.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/genindex.html b/v8.0.0-beta.1/genindex.html
index bb84b42b..dc686fc5 100644
--- a/v8.0.0-beta.1/genindex.html
+++ b/v8.0.0-beta.1/genindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/index.html b/v8.0.0-beta.1/index.html
index 856a6e71..33516d3a 100644
--- a/v8.0.0-beta.1/index.html
+++ b/v8.0.0-beta.1/index.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.async_stats.html b/v8.0.0-beta.1/output/botcore.async_stats.html
index f8ef94f1..bb5ae296 100644
--- a/v8.0.0-beta.1/output/botcore.async_stats.html
+++ b/v8.0.0-beta.1/output/botcore.async_stats.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.exts.html b/v8.0.0-beta.1/output/botcore.exts.html
index 71957719..5fab67f4 100644
--- a/v8.0.0-beta.1/output/botcore.exts.html
+++ b/v8.0.0-beta.1/output/botcore.exts.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.html b/v8.0.0-beta.1/output/botcore.html
index 962749da..802eb84f 100644
--- a/v8.0.0-beta.1/output/botcore.html
+++ b/v8.0.0-beta.1/output/botcore.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.site_api.html b/v8.0.0-beta.1/output/botcore.site_api.html
index 4ace7107..205444d9 100644
--- a/v8.0.0-beta.1/output/botcore.site_api.html
+++ b/v8.0.0-beta.1/output/botcore.site_api.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.utils.caching.html b/v8.0.0-beta.1/output/botcore.utils.caching.html
index 48035aea..3c37450f 100644
--- a/v8.0.0-beta.1/output/botcore.utils.caching.html
+++ b/v8.0.0-beta.1/output/botcore.utils.caching.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.utils.channel.html b/v8.0.0-beta.1/output/botcore.utils.channel.html
index 1c720cb0..08e20dc5 100644
--- a/v8.0.0-beta.1/output/botcore.utils.channel.html
+++ b/v8.0.0-beta.1/output/botcore.utils.channel.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.utils.commands.html b/v8.0.0-beta.1/output/botcore.utils.commands.html
index 862639e5..9217f7f2 100644
--- a/v8.0.0-beta.1/output/botcore.utils.commands.html
+++ b/v8.0.0-beta.1/output/botcore.utils.commands.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.utils.html b/v8.0.0-beta.1/output/botcore.utils.html
index 706d510b..cece8823 100644
--- a/v8.0.0-beta.1/output/botcore.utils.html
+++ b/v8.0.0-beta.1/output/botcore.utils.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.utils.interactions.html b/v8.0.0-beta.1/output/botcore.utils.interactions.html
index 32241bdb..8c216f0f 100644
--- a/v8.0.0-beta.1/output/botcore.utils.interactions.html
+++ b/v8.0.0-beta.1/output/botcore.utils.interactions.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.utils.logging.html b/v8.0.0-beta.1/output/botcore.utils.logging.html
index a614cfcf..70df626d 100644
--- a/v8.0.0-beta.1/output/botcore.utils.logging.html
+++ b/v8.0.0-beta.1/output/botcore.utils.logging.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.utils.members.html b/v8.0.0-beta.1/output/botcore.utils.members.html
index 0b14b6d1..3453a3ce 100644
--- a/v8.0.0-beta.1/output/botcore.utils.members.html
+++ b/v8.0.0-beta.1/output/botcore.utils.members.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.utils.regex.html b/v8.0.0-beta.1/output/botcore.utils.regex.html
index a16e6f67..6c937dc5 100644
--- a/v8.0.0-beta.1/output/botcore.utils.regex.html
+++ b/v8.0.0-beta.1/output/botcore.utils.regex.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/output/botcore.utils.scheduling.html b/v8.0.0-beta.1/output/botcore.utils.scheduling.html
index e2ad45f2..d820fcf0 100644
--- a/v8.0.0-beta.1/output/botcore.utils.scheduling.html
+++ b/v8.0.0-beta.1/output/botcore.utils.scheduling.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/py-modindex.html b/v8.0.0-beta.1/py-modindex.html
index 757ea3ba..4cb68e31 100644
--- a/v8.0.0-beta.1/py-modindex.html
+++ b/v8.0.0-beta.1/py-modindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/search.html b/v8.0.0-beta.1/search.html
index 31e6a576..d4877c20 100644
--- a/v8.0.0-beta.1/search.html
+++ b/v8.0.0-beta.1/search.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.1/versions.html b/v8.0.0-beta.1/versions.html
index 7102bf5c..02497673 100644
--- a/v8.0.0-beta.1/versions.html
+++ b/v8.0.0-beta.1/versions.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -341,6 +345,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/.buildinfo b/v8.0.0-beta.2/.buildinfo
index ac644b52..4805483f 100644
--- a/v8.0.0-beta.2/.buildinfo
+++ b/v8.0.0-beta.2/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 68828ce10b6080b89c07dd627d9d36fc
+config: 9f86b245be7461b33bdcc4b8fab2788d
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v8.0.0-beta.2/.doctrees/changelog.doctree b/v8.0.0-beta.2/.doctrees/changelog.doctree
index d08bf755..edecee42 100644
Binary files a/v8.0.0-beta.2/.doctrees/changelog.doctree and b/v8.0.0-beta.2/.doctrees/changelog.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/development.doctree b/v8.0.0-beta.2/.doctrees/development.doctree
index d112a947..a1a95c4f 100644
Binary files a/v8.0.0-beta.2/.doctrees/development.doctree and b/v8.0.0-beta.2/.doctrees/development.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/environment.pickle b/v8.0.0-beta.2/.doctrees/environment.pickle
index 6750ac60..3aa7011d 100644
Binary files a/v8.0.0-beta.2/.doctrees/environment.pickle and b/v8.0.0-beta.2/.doctrees/environment.pickle differ
diff --git a/v8.0.0-beta.2/.doctrees/index.doctree b/v8.0.0-beta.2/.doctrees/index.doctree
index f9db62de..0013bf0b 100644
Binary files a/v8.0.0-beta.2/.doctrees/index.doctree and b/v8.0.0-beta.2/.doctrees/index.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.async_stats.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.async_stats.doctree
index 5d3f9cfd..9b4d1c0a 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.async_stats.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.doctree
index d4e7bba7..9ace1787 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.exts.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.exts.doctree
index 152d7569..55c3d127 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.exts.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.exts.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.site_api.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.site_api.doctree
index c49b45a1..72587761 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.site_api.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.caching.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.caching.doctree
index 90028dd5..27fb3d14 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.caching.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.channel.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.channel.doctree
index 436cbe4f..8af0bf9b 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.channel.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.commands.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.commands.doctree
index f6ea51dc..d9deb996 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.commands.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.doctree
index dc96681f..948922ac 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.interactions.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.interactions.doctree
index 53f149eb..7d97a954 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.interactions.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.logging.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.logging.doctree
index c5cb5fe4..0dfbae04 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.logging.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.members.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.members.doctree
index 766d167e..5c0c070f 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.members.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.regex.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.regex.doctree
index dfb93fc1..602b2f8b 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.regex.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.scheduling.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.scheduling.doctree
index 6541d183..d4ce2857 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.scheduling.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v8.0.0-beta.2/changelog.html b/v8.0.0-beta.2/changelog.html
index 67ba2a49..58f0e4ef 100644
--- a/v8.0.0-beta.2/changelog.html
+++ b/v8.0.0-beta.2/changelog.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/development.html b/v8.0.0-beta.2/development.html
index 8a005dec..f1ad1cd8 100644
--- a/v8.0.0-beta.2/development.html
+++ b/v8.0.0-beta.2/development.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/genindex.html b/v8.0.0-beta.2/genindex.html
index 8e27b505..e024be9d 100644
--- a/v8.0.0-beta.2/genindex.html
+++ b/v8.0.0-beta.2/genindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/index.html b/v8.0.0-beta.2/index.html
index 01006800..98e5ea05 100644
--- a/v8.0.0-beta.2/index.html
+++ b/v8.0.0-beta.2/index.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.async_stats.html b/v8.0.0-beta.2/output/botcore.async_stats.html
index 6f95bba4..c9540ce2 100644
--- a/v8.0.0-beta.2/output/botcore.async_stats.html
+++ b/v8.0.0-beta.2/output/botcore.async_stats.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.exts.html b/v8.0.0-beta.2/output/botcore.exts.html
index 64a9c4fa..a3526ce4 100644
--- a/v8.0.0-beta.2/output/botcore.exts.html
+++ b/v8.0.0-beta.2/output/botcore.exts.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.html b/v8.0.0-beta.2/output/botcore.html
index 9f23e217..0db95bb6 100644
--- a/v8.0.0-beta.2/output/botcore.html
+++ b/v8.0.0-beta.2/output/botcore.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.site_api.html b/v8.0.0-beta.2/output/botcore.site_api.html
index 05d14846..aac11044 100644
--- a/v8.0.0-beta.2/output/botcore.site_api.html
+++ b/v8.0.0-beta.2/output/botcore.site_api.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.utils.caching.html b/v8.0.0-beta.2/output/botcore.utils.caching.html
index 8309d835..7e681b60 100644
--- a/v8.0.0-beta.2/output/botcore.utils.caching.html
+++ b/v8.0.0-beta.2/output/botcore.utils.caching.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.utils.channel.html b/v8.0.0-beta.2/output/botcore.utils.channel.html
index 91279c20..5e7bb5a3 100644
--- a/v8.0.0-beta.2/output/botcore.utils.channel.html
+++ b/v8.0.0-beta.2/output/botcore.utils.channel.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.utils.commands.html b/v8.0.0-beta.2/output/botcore.utils.commands.html
index 0ba722ad..3b3ced15 100644
--- a/v8.0.0-beta.2/output/botcore.utils.commands.html
+++ b/v8.0.0-beta.2/output/botcore.utils.commands.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.utils.html b/v8.0.0-beta.2/output/botcore.utils.html
index 7ab06d94..d0a08f33 100644
--- a/v8.0.0-beta.2/output/botcore.utils.html
+++ b/v8.0.0-beta.2/output/botcore.utils.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.utils.interactions.html b/v8.0.0-beta.2/output/botcore.utils.interactions.html
index 539a858c..a6bde795 100644
--- a/v8.0.0-beta.2/output/botcore.utils.interactions.html
+++ b/v8.0.0-beta.2/output/botcore.utils.interactions.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.utils.logging.html b/v8.0.0-beta.2/output/botcore.utils.logging.html
index 46da668d..3f751a39 100644
--- a/v8.0.0-beta.2/output/botcore.utils.logging.html
+++ b/v8.0.0-beta.2/output/botcore.utils.logging.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.utils.members.html b/v8.0.0-beta.2/output/botcore.utils.members.html
index 447bbfd7..a56fe0f0 100644
--- a/v8.0.0-beta.2/output/botcore.utils.members.html
+++ b/v8.0.0-beta.2/output/botcore.utils.members.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.utils.regex.html b/v8.0.0-beta.2/output/botcore.utils.regex.html
index 12e6d59a..125f7d40 100644
--- a/v8.0.0-beta.2/output/botcore.utils.regex.html
+++ b/v8.0.0-beta.2/output/botcore.utils.regex.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/output/botcore.utils.scheduling.html b/v8.0.0-beta.2/output/botcore.utils.scheduling.html
index d37f7c86..240d7104 100644
--- a/v8.0.0-beta.2/output/botcore.utils.scheduling.html
+++ b/v8.0.0-beta.2/output/botcore.utils.scheduling.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/py-modindex.html b/v8.0.0-beta.2/py-modindex.html
index 8b1997d9..4d7ebd10 100644
--- a/v8.0.0-beta.2/py-modindex.html
+++ b/v8.0.0-beta.2/py-modindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/search.html b/v8.0.0-beta.2/search.html
index 8867a3a0..d6cfd8da 100644
--- a/v8.0.0-beta.2/search.html
+++ b/v8.0.0-beta.2/search.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.2/versions.html b/v8.0.0-beta.2/versions.html
index 9e01f190..275c29f4 100644
--- a/v8.0.0-beta.2/versions.html
+++ b/v8.0.0-beta.2/versions.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -341,6 +345,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/.buildinfo b/v8.0.0-beta.3/.buildinfo
index 158a4674..430d104f 100644
--- a/v8.0.0-beta.3/.buildinfo
+++ b/v8.0.0-beta.3/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 204ead0d6266a1758362bde76d7873dc
+config: 443b12b8dde78f79877cd37c2b23e985
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v8.0.0-beta.3/.doctrees/changelog.doctree b/v8.0.0-beta.3/.doctrees/changelog.doctree
index 8ae840fb..c80f3d7e 100644
Binary files a/v8.0.0-beta.3/.doctrees/changelog.doctree and b/v8.0.0-beta.3/.doctrees/changelog.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/development.doctree b/v8.0.0-beta.3/.doctrees/development.doctree
index 12304979..982a2bbc 100644
Binary files a/v8.0.0-beta.3/.doctrees/development.doctree and b/v8.0.0-beta.3/.doctrees/development.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/environment.pickle b/v8.0.0-beta.3/.doctrees/environment.pickle
index 32970985..16c8b36a 100644
Binary files a/v8.0.0-beta.3/.doctrees/environment.pickle and b/v8.0.0-beta.3/.doctrees/environment.pickle differ
diff --git a/v8.0.0-beta.3/.doctrees/index.doctree b/v8.0.0-beta.3/.doctrees/index.doctree
index 2a70386b..dc1689c8 100644
Binary files a/v8.0.0-beta.3/.doctrees/index.doctree and b/v8.0.0-beta.3/.doctrees/index.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.async_stats.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.async_stats.doctree
index f1d1a7e2..947aab04 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.async_stats.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.doctree
index eda9a4e2..b9d8909b 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.exts.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.exts.doctree
index de9f79ad..76123dca 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.exts.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.exts.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.site_api.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.site_api.doctree
index 2bdb4b83..1f69b664 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.site_api.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.caching.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.caching.doctree
index 39223c52..1a53fc7d 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.utils.caching.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.channel.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.channel.doctree
index 2a492100..b003d045 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.utils.channel.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.commands.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.commands.doctree
index 26cc3980..00321f30 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.utils.commands.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.doctree
index 7657eea9..77d85936 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.utils.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.interactions.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.interactions.doctree
index 22752902..dea693be 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.utils.interactions.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.logging.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.logging.doctree
index 76e44ec6..ce802c36 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.utils.logging.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.members.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.members.doctree
index bf69a159..dc21ce9f 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.utils.members.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.regex.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.regex.doctree
index 2717d0ca..9fc52f39 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.utils.regex.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.scheduling.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.scheduling.doctree
index 34b0ac09..795ad105 100644
Binary files a/v8.0.0-beta.3/.doctrees/output/botcore.utils.scheduling.doctree and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v8.0.0-beta.3/changelog.html b/v8.0.0-beta.3/changelog.html
index 03b2e9c7..74dd5bd1 100644
--- a/v8.0.0-beta.3/changelog.html
+++ b/v8.0.0-beta.3/changelog.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/development.html b/v8.0.0-beta.3/development.html
index 2a6fe318..b8c2141c 100644
--- a/v8.0.0-beta.3/development.html
+++ b/v8.0.0-beta.3/development.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/genindex.html b/v8.0.0-beta.3/genindex.html
index 3e6e19b8..b0b44317 100644
--- a/v8.0.0-beta.3/genindex.html
+++ b/v8.0.0-beta.3/genindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/index.html b/v8.0.0-beta.3/index.html
index 2a02b566..3492b1d1 100644
--- a/v8.0.0-beta.3/index.html
+++ b/v8.0.0-beta.3/index.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.async_stats.html b/v8.0.0-beta.3/output/botcore.async_stats.html
index 27e5707c..6d7bd715 100644
--- a/v8.0.0-beta.3/output/botcore.async_stats.html
+++ b/v8.0.0-beta.3/output/botcore.async_stats.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.exts.html b/v8.0.0-beta.3/output/botcore.exts.html
index 10127448..97c0bdb0 100644
--- a/v8.0.0-beta.3/output/botcore.exts.html
+++ b/v8.0.0-beta.3/output/botcore.exts.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.html b/v8.0.0-beta.3/output/botcore.html
index 04dc89e4..1ae54894 100644
--- a/v8.0.0-beta.3/output/botcore.html
+++ b/v8.0.0-beta.3/output/botcore.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.site_api.html b/v8.0.0-beta.3/output/botcore.site_api.html
index 2dfb3c6c..ee6004c9 100644
--- a/v8.0.0-beta.3/output/botcore.site_api.html
+++ b/v8.0.0-beta.3/output/botcore.site_api.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.utils.caching.html b/v8.0.0-beta.3/output/botcore.utils.caching.html
index 2031c410..17063e99 100644
--- a/v8.0.0-beta.3/output/botcore.utils.caching.html
+++ b/v8.0.0-beta.3/output/botcore.utils.caching.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.utils.channel.html b/v8.0.0-beta.3/output/botcore.utils.channel.html
index 82fd9e4b..1b446e78 100644
--- a/v8.0.0-beta.3/output/botcore.utils.channel.html
+++ b/v8.0.0-beta.3/output/botcore.utils.channel.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.utils.commands.html b/v8.0.0-beta.3/output/botcore.utils.commands.html
index c1049ebd..5c54196d 100644
--- a/v8.0.0-beta.3/output/botcore.utils.commands.html
+++ b/v8.0.0-beta.3/output/botcore.utils.commands.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.utils.html b/v8.0.0-beta.3/output/botcore.utils.html
index 1008a2c5..4fc94490 100644
--- a/v8.0.0-beta.3/output/botcore.utils.html
+++ b/v8.0.0-beta.3/output/botcore.utils.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.utils.interactions.html b/v8.0.0-beta.3/output/botcore.utils.interactions.html
index e409ce56..178dc453 100644
--- a/v8.0.0-beta.3/output/botcore.utils.interactions.html
+++ b/v8.0.0-beta.3/output/botcore.utils.interactions.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.utils.logging.html b/v8.0.0-beta.3/output/botcore.utils.logging.html
index 0290ed78..e893674a 100644
--- a/v8.0.0-beta.3/output/botcore.utils.logging.html
+++ b/v8.0.0-beta.3/output/botcore.utils.logging.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.utils.members.html b/v8.0.0-beta.3/output/botcore.utils.members.html
index a86876f5..68462218 100644
--- a/v8.0.0-beta.3/output/botcore.utils.members.html
+++ b/v8.0.0-beta.3/output/botcore.utils.members.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.utils.regex.html b/v8.0.0-beta.3/output/botcore.utils.regex.html
index 5f9ddb98..0cb1b8af 100644
--- a/v8.0.0-beta.3/output/botcore.utils.regex.html
+++ b/v8.0.0-beta.3/output/botcore.utils.regex.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/output/botcore.utils.scheduling.html b/v8.0.0-beta.3/output/botcore.utils.scheduling.html
index b046ed46..37c838b4 100644
--- a/v8.0.0-beta.3/output/botcore.utils.scheduling.html
+++ b/v8.0.0-beta.3/output/botcore.utils.scheduling.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/py-modindex.html b/v8.0.0-beta.3/py-modindex.html
index 0809fe8f..9b9ce453 100644
--- a/v8.0.0-beta.3/py-modindex.html
+++ b/v8.0.0-beta.3/py-modindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/search.html b/v8.0.0-beta.3/search.html
index fdccce80..fe739dda 100644
--- a/v8.0.0-beta.3/search.html
+++ b/v8.0.0-beta.3/search.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.3/versions.html b/v8.0.0-beta.3/versions.html
index 6df9b956..ae250530 100644
--- a/v8.0.0-beta.3/versions.html
+++ b/v8.0.0-beta.3/versions.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -341,6 +345,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/.buildinfo b/v8.0.0-beta.4/.buildinfo
index 97ee1a96..1a9c71a5 100644
--- a/v8.0.0-beta.4/.buildinfo
+++ b/v8.0.0-beta.4/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 70bd697eb4ceeac26d09df3a88268723
+config: 7f6d3803c99e39e392a8c4b3986e342e
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v8.0.0-beta.4/.doctrees/changelog.doctree b/v8.0.0-beta.4/.doctrees/changelog.doctree
index 900b56fc..519b6862 100644
Binary files a/v8.0.0-beta.4/.doctrees/changelog.doctree and b/v8.0.0-beta.4/.doctrees/changelog.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/development.doctree b/v8.0.0-beta.4/.doctrees/development.doctree
index 419dc24f..4527ca0f 100644
Binary files a/v8.0.0-beta.4/.doctrees/development.doctree and b/v8.0.0-beta.4/.doctrees/development.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/environment.pickle b/v8.0.0-beta.4/.doctrees/environment.pickle
index ac2c6b9a..accdee5b 100644
Binary files a/v8.0.0-beta.4/.doctrees/environment.pickle and b/v8.0.0-beta.4/.doctrees/environment.pickle differ
diff --git a/v8.0.0-beta.4/.doctrees/index.doctree b/v8.0.0-beta.4/.doctrees/index.doctree
index b8349095..6a6237c5 100644
Binary files a/v8.0.0-beta.4/.doctrees/index.doctree and b/v8.0.0-beta.4/.doctrees/index.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.async_stats.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.async_stats.doctree
index 51a233a2..fcf76a38 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.async_stats.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.doctree
index f4ce8149..fbd02ffd 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.exts.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.exts.doctree
index 075c840b..631ecec7 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.exts.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.exts.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.site_api.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.site_api.doctree
index f3b6d052..ccf3b168 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.site_api.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.utils.caching.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.utils.caching.doctree
index b4e5a3a5..5a57204f 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.utils.caching.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.utils.channel.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.utils.channel.doctree
index 5a0f516c..8bc8583c 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.utils.channel.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.utils.commands.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.utils.commands.doctree
index 4651ec3f..df9ef2b6 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.utils.commands.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.utils.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.utils.doctree
index 2ac7a4f3..ea895d13 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.utils.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.utils.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.utils.interactions.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.utils.interactions.doctree
index ef626f21..46ef9d1b 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.utils.interactions.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.utils.logging.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.utils.logging.doctree
index e4d489f8..ebce58e6 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.utils.logging.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.utils.members.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.utils.members.doctree
index 60b45190..7c6b50ab 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.utils.members.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.utils.regex.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.utils.regex.doctree
index 9b994689..6606f9e2 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.utils.regex.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v8.0.0-beta.4/.doctrees/output/botcore.utils.scheduling.doctree b/v8.0.0-beta.4/.doctrees/output/botcore.utils.scheduling.doctree
index 8cf8bbb2..425ba943 100644
Binary files a/v8.0.0-beta.4/.doctrees/output/botcore.utils.scheduling.doctree and b/v8.0.0-beta.4/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v8.0.0-beta.4/changelog.html b/v8.0.0-beta.4/changelog.html
index ac52995a..fa646c44 100644
--- a/v8.0.0-beta.4/changelog.html
+++ b/v8.0.0-beta.4/changelog.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/development.html b/v8.0.0-beta.4/development.html
index 751ead78..6492e0f1 100644
--- a/v8.0.0-beta.4/development.html
+++ b/v8.0.0-beta.4/development.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/genindex.html b/v8.0.0-beta.4/genindex.html
index 13b1ba23..4d506eee 100644
--- a/v8.0.0-beta.4/genindex.html
+++ b/v8.0.0-beta.4/genindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/index.html b/v8.0.0-beta.4/index.html
index 77ede642..6524dcc7 100644
--- a/v8.0.0-beta.4/index.html
+++ b/v8.0.0-beta.4/index.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.async_stats.html b/v8.0.0-beta.4/output/botcore.async_stats.html
index 5f2f7555..d530390b 100644
--- a/v8.0.0-beta.4/output/botcore.async_stats.html
+++ b/v8.0.0-beta.4/output/botcore.async_stats.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.exts.html b/v8.0.0-beta.4/output/botcore.exts.html
index 39b15045..f7f3fb24 100644
--- a/v8.0.0-beta.4/output/botcore.exts.html
+++ b/v8.0.0-beta.4/output/botcore.exts.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.html b/v8.0.0-beta.4/output/botcore.html
index 5fba30da..ab082fa1 100644
--- a/v8.0.0-beta.4/output/botcore.html
+++ b/v8.0.0-beta.4/output/botcore.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.site_api.html b/v8.0.0-beta.4/output/botcore.site_api.html
index 1010eb8e..1380c9b8 100644
--- a/v8.0.0-beta.4/output/botcore.site_api.html
+++ b/v8.0.0-beta.4/output/botcore.site_api.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.utils.caching.html b/v8.0.0-beta.4/output/botcore.utils.caching.html
index 0e2a5778..e69fa2a9 100644
--- a/v8.0.0-beta.4/output/botcore.utils.caching.html
+++ b/v8.0.0-beta.4/output/botcore.utils.caching.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.utils.channel.html b/v8.0.0-beta.4/output/botcore.utils.channel.html
index c785d19d..9920f752 100644
--- a/v8.0.0-beta.4/output/botcore.utils.channel.html
+++ b/v8.0.0-beta.4/output/botcore.utils.channel.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.utils.commands.html b/v8.0.0-beta.4/output/botcore.utils.commands.html
index 667baa8f..c6917cc3 100644
--- a/v8.0.0-beta.4/output/botcore.utils.commands.html
+++ b/v8.0.0-beta.4/output/botcore.utils.commands.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.utils.html b/v8.0.0-beta.4/output/botcore.utils.html
index cf23a514..3cf0b176 100644
--- a/v8.0.0-beta.4/output/botcore.utils.html
+++ b/v8.0.0-beta.4/output/botcore.utils.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.utils.interactions.html b/v8.0.0-beta.4/output/botcore.utils.interactions.html
index 7ca6e7ba..b450ec45 100644
--- a/v8.0.0-beta.4/output/botcore.utils.interactions.html
+++ b/v8.0.0-beta.4/output/botcore.utils.interactions.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.utils.logging.html b/v8.0.0-beta.4/output/botcore.utils.logging.html
index a89e65d8..08a35ceb 100644
--- a/v8.0.0-beta.4/output/botcore.utils.logging.html
+++ b/v8.0.0-beta.4/output/botcore.utils.logging.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.utils.members.html b/v8.0.0-beta.4/output/botcore.utils.members.html
index 55c24f10..feac700d 100644
--- a/v8.0.0-beta.4/output/botcore.utils.members.html
+++ b/v8.0.0-beta.4/output/botcore.utils.members.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.utils.regex.html b/v8.0.0-beta.4/output/botcore.utils.regex.html
index b970718d..bc4763d3 100644
--- a/v8.0.0-beta.4/output/botcore.utils.regex.html
+++ b/v8.0.0-beta.4/output/botcore.utils.regex.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/output/botcore.utils.scheduling.html b/v8.0.0-beta.4/output/botcore.utils.scheduling.html
index 8be3f799..18c8a8b7 100644
--- a/v8.0.0-beta.4/output/botcore.utils.scheduling.html
+++ b/v8.0.0-beta.4/output/botcore.utils.scheduling.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/py-modindex.html b/v8.0.0-beta.4/py-modindex.html
index 5e389c9e..effac191 100644
--- a/v8.0.0-beta.4/py-modindex.html
+++ b/v8.0.0-beta.4/py-modindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/search.html b/v8.0.0-beta.4/search.html
index 8707d370..951fcf86 100644
--- a/v8.0.0-beta.4/search.html
+++ b/v8.0.0-beta.4/search.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0-beta.4/versions.html b/v8.0.0-beta.4/versions.html
index bf3a216c..40d20a53 100644
--- a/v8.0.0-beta.4/versions.html
+++ b/v8.0.0-beta.4/versions.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -341,6 +345,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v8.0.0/.buildinfo b/v8.0.0/.buildinfo
index f0d37d5e..b8fc200d 100644
--- a/v8.0.0/.buildinfo
+++ b/v8.0.0/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: ec4e05afd176dc346b9f0e6e773d7303
+config: d75bc8c865a796d30d451ba3af2e3b1e
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v8.0.0/.doctrees/changelog.doctree b/v8.0.0/.doctrees/changelog.doctree
index 4b25e405..1760ceec 100644
Binary files a/v8.0.0/.doctrees/changelog.doctree and b/v8.0.0/.doctrees/changelog.doctree differ
diff --git a/v8.0.0/.doctrees/development.doctree b/v8.0.0/.doctrees/development.doctree
index dfb188bd..629a1049 100644
Binary files a/v8.0.0/.doctrees/development.doctree and b/v8.0.0/.doctrees/development.doctree differ
diff --git a/v8.0.0/.doctrees/environment.pickle b/v8.0.0/.doctrees/environment.pickle
index 9de01050..bf356f7b 100644
Binary files a/v8.0.0/.doctrees/environment.pickle and b/v8.0.0/.doctrees/environment.pickle differ
diff --git a/v8.0.0/.doctrees/index.doctree b/v8.0.0/.doctrees/index.doctree
index c6f45905..6f877cad 100644
Binary files a/v8.0.0/.doctrees/index.doctree and b/v8.0.0/.doctrees/index.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.async_stats.doctree b/v8.0.0/.doctrees/output/botcore.async_stats.doctree
index 8b3bcd34..7012cdf6 100644
Binary files a/v8.0.0/.doctrees/output/botcore.async_stats.doctree and b/v8.0.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.doctree b/v8.0.0/.doctrees/output/botcore.doctree
index bd31bbb7..cea5ac6f 100644
Binary files a/v8.0.0/.doctrees/output/botcore.doctree and b/v8.0.0/.doctrees/output/botcore.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.exts.doctree b/v8.0.0/.doctrees/output/botcore.exts.doctree
index 985051b8..f8dbcded 100644
Binary files a/v8.0.0/.doctrees/output/botcore.exts.doctree and b/v8.0.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.site_api.doctree b/v8.0.0/.doctrees/output/botcore.site_api.doctree
index 0998312e..3d441f91 100644
Binary files a/v8.0.0/.doctrees/output/botcore.site_api.doctree and b/v8.0.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.utils.caching.doctree b/v8.0.0/.doctrees/output/botcore.utils.caching.doctree
index a930ec64..6d1cd288 100644
Binary files a/v8.0.0/.doctrees/output/botcore.utils.caching.doctree and b/v8.0.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.utils.channel.doctree b/v8.0.0/.doctrees/output/botcore.utils.channel.doctree
index 1c4ca175..8c03fe1e 100644
Binary files a/v8.0.0/.doctrees/output/botcore.utils.channel.doctree and b/v8.0.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.utils.commands.doctree b/v8.0.0/.doctrees/output/botcore.utils.commands.doctree
index 05694e00..057cfd46 100644
Binary files a/v8.0.0/.doctrees/output/botcore.utils.commands.doctree and b/v8.0.0/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.utils.doctree b/v8.0.0/.doctrees/output/botcore.utils.doctree
index 02c4c96d..a2740ce9 100644
Binary files a/v8.0.0/.doctrees/output/botcore.utils.doctree and b/v8.0.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.utils.interactions.doctree b/v8.0.0/.doctrees/output/botcore.utils.interactions.doctree
index ca2b1ede..cf80ee59 100644
Binary files a/v8.0.0/.doctrees/output/botcore.utils.interactions.doctree and b/v8.0.0/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.utils.logging.doctree b/v8.0.0/.doctrees/output/botcore.utils.logging.doctree
index 32419b2f..7d1f0247 100644
Binary files a/v8.0.0/.doctrees/output/botcore.utils.logging.doctree and b/v8.0.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.utils.members.doctree b/v8.0.0/.doctrees/output/botcore.utils.members.doctree
index be561c64..bf30d01c 100644
Binary files a/v8.0.0/.doctrees/output/botcore.utils.members.doctree and b/v8.0.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.utils.regex.doctree b/v8.0.0/.doctrees/output/botcore.utils.regex.doctree
index 8e64c565..e0afcb88 100644
Binary files a/v8.0.0/.doctrees/output/botcore.utils.regex.doctree and b/v8.0.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v8.0.0/.doctrees/output/botcore.utils.scheduling.doctree b/v8.0.0/.doctrees/output/botcore.utils.scheduling.doctree
index da1cce82..98ce33de 100644
Binary files a/v8.0.0/.doctrees/output/botcore.utils.scheduling.doctree and b/v8.0.0/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v8.0.0/changelog.html b/v8.0.0/changelog.html
index 8196d3cb..5d10f372 100644
--- a/v8.0.0/changelog.html
+++ b/v8.0.0/changelog.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/development.html b/v8.0.0/development.html
index 8f77c942..bce5d2cb 100644
--- a/v8.0.0/development.html
+++ b/v8.0.0/development.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/genindex.html b/v8.0.0/genindex.html
index 5e54ebb8..bace90ea 100644
--- a/v8.0.0/genindex.html
+++ b/v8.0.0/genindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/index.html b/v8.0.0/index.html
index e08bb2f5..c8367c8b 100644
--- a/v8.0.0/index.html
+++ b/v8.0.0/index.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.async_stats.html b/v8.0.0/output/botcore.async_stats.html
index ca566ba2..7d7a3f41 100644
--- a/v8.0.0/output/botcore.async_stats.html
+++ b/v8.0.0/output/botcore.async_stats.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.exts.html b/v8.0.0/output/botcore.exts.html
index 46b03dba..7de811d2 100644
--- a/v8.0.0/output/botcore.exts.html
+++ b/v8.0.0/output/botcore.exts.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.html b/v8.0.0/output/botcore.html
index 0344c414..0a285480 100644
--- a/v8.0.0/output/botcore.html
+++ b/v8.0.0/output/botcore.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.site_api.html b/v8.0.0/output/botcore.site_api.html
index 97e5a37c..fa05d9ce 100644
--- a/v8.0.0/output/botcore.site_api.html
+++ b/v8.0.0/output/botcore.site_api.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.utils.caching.html b/v8.0.0/output/botcore.utils.caching.html
index 23eb637f..1455f435 100644
--- a/v8.0.0/output/botcore.utils.caching.html
+++ b/v8.0.0/output/botcore.utils.caching.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.utils.channel.html b/v8.0.0/output/botcore.utils.channel.html
index fedf0e00..0fcf3ad9 100644
--- a/v8.0.0/output/botcore.utils.channel.html
+++ b/v8.0.0/output/botcore.utils.channel.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.utils.commands.html b/v8.0.0/output/botcore.utils.commands.html
index 8190f17d..fc6bbbeb 100644
--- a/v8.0.0/output/botcore.utils.commands.html
+++ b/v8.0.0/output/botcore.utils.commands.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.utils.html b/v8.0.0/output/botcore.utils.html
index 0b6e3ae0..2becb722 100644
--- a/v8.0.0/output/botcore.utils.html
+++ b/v8.0.0/output/botcore.utils.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.utils.interactions.html b/v8.0.0/output/botcore.utils.interactions.html
index 63a89cba..4aff906e 100644
--- a/v8.0.0/output/botcore.utils.interactions.html
+++ b/v8.0.0/output/botcore.utils.interactions.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.utils.logging.html b/v8.0.0/output/botcore.utils.logging.html
index 56e67705..62ea861e 100644
--- a/v8.0.0/output/botcore.utils.logging.html
+++ b/v8.0.0/output/botcore.utils.logging.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.utils.members.html b/v8.0.0/output/botcore.utils.members.html
index 277c4819..be51ff19 100644
--- a/v8.0.0/output/botcore.utils.members.html
+++ b/v8.0.0/output/botcore.utils.members.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.utils.regex.html b/v8.0.0/output/botcore.utils.regex.html
index c0400f55..525ebed2 100644
--- a/v8.0.0/output/botcore.utils.regex.html
+++ b/v8.0.0/output/botcore.utils.regex.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/output/botcore.utils.scheduling.html b/v8.0.0/output/botcore.utils.scheduling.html
index 79c1e0d0..73ff52bc 100644
--- a/v8.0.0/output/botcore.utils.scheduling.html
+++ b/v8.0.0/output/botcore.utils.scheduling.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/py-modindex.html b/v8.0.0/py-modindex.html
index 56a328d5..caa0f845 100644
--- a/v8.0.0/py-modindex.html
+++ b/v8.0.0/py-modindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/search.html b/v8.0.0/search.html
index 530da2eb..5047e4f0 100644
--- a/v8.0.0/search.html
+++ b/v8.0.0/search.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.0.0/versions.html b/v8.0.0/versions.html
index dabd1726..30124f83 100644
--- a/v8.0.0/versions.html
+++ b/v8.0.0/versions.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -341,6 +345,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
diff --git a/v8.1.0/.buildinfo b/v8.1.0/.buildinfo
index 54536f93..f9ff0076 100644
--- a/v8.1.0/.buildinfo
+++ b/v8.1.0/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 1fa3a36277e607dbc451ec7d6f606e78
+config: 2c5f4957774aec7607c7d068bdb1fb8a
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v8.1.0/.doctrees/changelog.doctree b/v8.1.0/.doctrees/changelog.doctree
index 1209475e..856edec7 100644
Binary files a/v8.1.0/.doctrees/changelog.doctree and b/v8.1.0/.doctrees/changelog.doctree differ
diff --git a/v8.1.0/.doctrees/development.doctree b/v8.1.0/.doctrees/development.doctree
index 1b24d28f..bcf844ae 100644
Binary files a/v8.1.0/.doctrees/development.doctree and b/v8.1.0/.doctrees/development.doctree differ
diff --git a/v8.1.0/.doctrees/environment.pickle b/v8.1.0/.doctrees/environment.pickle
index bd6354ab..e065f02b 100644
Binary files a/v8.1.0/.doctrees/environment.pickle and b/v8.1.0/.doctrees/environment.pickle differ
diff --git a/v8.1.0/.doctrees/index.doctree b/v8.1.0/.doctrees/index.doctree
index ea1efc67..2fe436f6 100644
Binary files a/v8.1.0/.doctrees/index.doctree and b/v8.1.0/.doctrees/index.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.async_stats.doctree b/v8.1.0/.doctrees/output/botcore.async_stats.doctree
index f590e879..31d355b2 100644
Binary files a/v8.1.0/.doctrees/output/botcore.async_stats.doctree and b/v8.1.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.doctree b/v8.1.0/.doctrees/output/botcore.doctree
index 76de93a3..5d13a4c4 100644
Binary files a/v8.1.0/.doctrees/output/botcore.doctree and b/v8.1.0/.doctrees/output/botcore.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.exts.doctree b/v8.1.0/.doctrees/output/botcore.exts.doctree
index ff015059..d258177a 100644
Binary files a/v8.1.0/.doctrees/output/botcore.exts.doctree and b/v8.1.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.site_api.doctree b/v8.1.0/.doctrees/output/botcore.site_api.doctree
index 808761c4..73cec227 100644
Binary files a/v8.1.0/.doctrees/output/botcore.site_api.doctree and b/v8.1.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.utils.caching.doctree b/v8.1.0/.doctrees/output/botcore.utils.caching.doctree
index 200f665f..b4e540d0 100644
Binary files a/v8.1.0/.doctrees/output/botcore.utils.caching.doctree and b/v8.1.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.utils.channel.doctree b/v8.1.0/.doctrees/output/botcore.utils.channel.doctree
index 09336624..3f43ae11 100644
Binary files a/v8.1.0/.doctrees/output/botcore.utils.channel.doctree and b/v8.1.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.utils.commands.doctree b/v8.1.0/.doctrees/output/botcore.utils.commands.doctree
index 31209f12..27abf7e8 100644
Binary files a/v8.1.0/.doctrees/output/botcore.utils.commands.doctree and b/v8.1.0/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.utils.doctree b/v8.1.0/.doctrees/output/botcore.utils.doctree
index 4ee5d776..ae5fe4fa 100644
Binary files a/v8.1.0/.doctrees/output/botcore.utils.doctree and b/v8.1.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.utils.interactions.doctree b/v8.1.0/.doctrees/output/botcore.utils.interactions.doctree
index c1d54330..50d7c941 100644
Binary files a/v8.1.0/.doctrees/output/botcore.utils.interactions.doctree and b/v8.1.0/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.utils.logging.doctree b/v8.1.0/.doctrees/output/botcore.utils.logging.doctree
index 17c857f6..78eb628a 100644
Binary files a/v8.1.0/.doctrees/output/botcore.utils.logging.doctree and b/v8.1.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.utils.members.doctree b/v8.1.0/.doctrees/output/botcore.utils.members.doctree
index 24bf0d47..3e1494c3 100644
Binary files a/v8.1.0/.doctrees/output/botcore.utils.members.doctree and b/v8.1.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.utils.regex.doctree b/v8.1.0/.doctrees/output/botcore.utils.regex.doctree
index c765eeb1..ed4718b2 100644
Binary files a/v8.1.0/.doctrees/output/botcore.utils.regex.doctree and b/v8.1.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v8.1.0/.doctrees/output/botcore.utils.scheduling.doctree b/v8.1.0/.doctrees/output/botcore.utils.scheduling.doctree
index 0c7ea876..5f64cdce 100644
Binary files a/v8.1.0/.doctrees/output/botcore.utils.scheduling.doctree and b/v8.1.0/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v8.1.0/changelog.html b/v8.1.0/changelog.html
index 04dda7fb..cb577e3a 100644
--- a/v8.1.0/changelog.html
+++ b/v8.1.0/changelog.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/development.html b/v8.1.0/development.html
index b6034819..9728552d 100644
--- a/v8.1.0/development.html
+++ b/v8.1.0/development.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/genindex.html b/v8.1.0/genindex.html
index 9a01a097..92acde33 100644
--- a/v8.1.0/genindex.html
+++ b/v8.1.0/genindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/index.html b/v8.1.0/index.html
index 3b04de4e..c723a630 100644
--- a/v8.1.0/index.html
+++ b/v8.1.0/index.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.async_stats.html b/v8.1.0/output/botcore.async_stats.html
index abea15d5..69274e42 100644
--- a/v8.1.0/output/botcore.async_stats.html
+++ b/v8.1.0/output/botcore.async_stats.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.exts.html b/v8.1.0/output/botcore.exts.html
index 1409c572..8ae9ffa0 100644
--- a/v8.1.0/output/botcore.exts.html
+++ b/v8.1.0/output/botcore.exts.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.html b/v8.1.0/output/botcore.html
index 0aa53af0..d68264c6 100644
--- a/v8.1.0/output/botcore.html
+++ b/v8.1.0/output/botcore.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.site_api.html b/v8.1.0/output/botcore.site_api.html
index 81b41472..3b03b5fa 100644
--- a/v8.1.0/output/botcore.site_api.html
+++ b/v8.1.0/output/botcore.site_api.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.utils.caching.html b/v8.1.0/output/botcore.utils.caching.html
index df38f520..c32ed710 100644
--- a/v8.1.0/output/botcore.utils.caching.html
+++ b/v8.1.0/output/botcore.utils.caching.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.utils.channel.html b/v8.1.0/output/botcore.utils.channel.html
index c74d5db5..f947f2cd 100644
--- a/v8.1.0/output/botcore.utils.channel.html
+++ b/v8.1.0/output/botcore.utils.channel.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.utils.commands.html b/v8.1.0/output/botcore.utils.commands.html
index 8aa7a63c..f799e277 100644
--- a/v8.1.0/output/botcore.utils.commands.html
+++ b/v8.1.0/output/botcore.utils.commands.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.utils.html b/v8.1.0/output/botcore.utils.html
index 3bbf4402..6a6bb396 100644
--- a/v8.1.0/output/botcore.utils.html
+++ b/v8.1.0/output/botcore.utils.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.utils.interactions.html b/v8.1.0/output/botcore.utils.interactions.html
index cdc83f26..c5504ba2 100644
--- a/v8.1.0/output/botcore.utils.interactions.html
+++ b/v8.1.0/output/botcore.utils.interactions.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.utils.logging.html b/v8.1.0/output/botcore.utils.logging.html
index 26074b40..b45beba0 100644
--- a/v8.1.0/output/botcore.utils.logging.html
+++ b/v8.1.0/output/botcore.utils.logging.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.utils.members.html b/v8.1.0/output/botcore.utils.members.html
index b85305a4..cf3cd776 100644
--- a/v8.1.0/output/botcore.utils.members.html
+++ b/v8.1.0/output/botcore.utils.members.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.utils.regex.html b/v8.1.0/output/botcore.utils.regex.html
index ca55320f..c1538e21 100644
--- a/v8.1.0/output/botcore.utils.regex.html
+++ b/v8.1.0/output/botcore.utils.regex.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/output/botcore.utils.scheduling.html b/v8.1.0/output/botcore.utils.scheduling.html
index 5c2645a3..8babcc53 100644
--- a/v8.1.0/output/botcore.utils.scheduling.html
+++ b/v8.1.0/output/botcore.utils.scheduling.html
@@ -207,6 +207,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/py-modindex.html b/v8.1.0/py-modindex.html
index 93e415f0..ad40a398 100644
--- a/v8.1.0/py-modindex.html
+++ b/v8.1.0/py-modindex.html
@@ -205,6 +205,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/search.html b/v8.1.0/search.html
index 0a78f495..279eb764 100644
--- a/v8.1.0/search.html
+++ b/v8.1.0/search.html
@@ -204,6 +204,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
diff --git a/v8.1.0/versions.html b/v8.1.0/versions.html
index 55d3e27e..cbde5c37 100644
--- a/v8.1.0/versions.html
+++ b/v8.1.0/versions.html
@@ -206,6 +206,10 @@
main
+ -
+ v8.2.0
+
+
-
v8.1.0
@@ -341,6 +345,12 @@
- latest
+ -
+ v8.2.0
+
+
+
+
-
v8.1.0
(current)
diff --git a/v8.2.0/.buildinfo b/v8.2.0/.buildinfo
new file mode 100644
index 00000000..5b299878
--- /dev/null
+++ b/v8.2.0/.buildinfo
@@ -0,0 +1,4 @@
+# Sphinx build info version 1
+# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
+config: eee2f71a85b4d2790f2f5820519f7097
+tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v8.2.0/.doctrees/changelog.doctree b/v8.2.0/.doctrees/changelog.doctree
new file mode 100644
index 00000000..c8fb6f82
Binary files /dev/null and b/v8.2.0/.doctrees/changelog.doctree differ
diff --git a/v8.2.0/.doctrees/development.doctree b/v8.2.0/.doctrees/development.doctree
new file mode 100644
index 00000000..6a385836
Binary files /dev/null and b/v8.2.0/.doctrees/development.doctree differ
diff --git a/v8.2.0/.doctrees/environment.pickle b/v8.2.0/.doctrees/environment.pickle
new file mode 100644
index 00000000..6fc711c8
Binary files /dev/null and b/v8.2.0/.doctrees/environment.pickle differ
diff --git a/v8.2.0/.doctrees/index.doctree b/v8.2.0/.doctrees/index.doctree
new file mode 100644
index 00000000..d8d8b59a
Binary files /dev/null and b/v8.2.0/.doctrees/index.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.async_stats.doctree b/v8.2.0/.doctrees/output/botcore.async_stats.doctree
new file mode 100644
index 00000000..71834d9b
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.doctree b/v8.2.0/.doctrees/output/botcore.doctree
new file mode 100644
index 00000000..c2579eac
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.exts.doctree b/v8.2.0/.doctrees/output/botcore.exts.doctree
new file mode 100644
index 00000000..0f2b2e80
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.site_api.doctree b/v8.2.0/.doctrees/output/botcore.site_api.doctree
new file mode 100644
index 00000000..d1e3b6d6
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.utils.caching.doctree b/v8.2.0/.doctrees/output/botcore.utils.caching.doctree
new file mode 100644
index 00000000..3164b9b1
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.utils.channel.doctree b/v8.2.0/.doctrees/output/botcore.utils.channel.doctree
new file mode 100644
index 00000000..e6e5b42a
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.utils.commands.doctree b/v8.2.0/.doctrees/output/botcore.utils.commands.doctree
new file mode 100644
index 00000000..74feba51
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.utils.doctree b/v8.2.0/.doctrees/output/botcore.utils.doctree
new file mode 100644
index 00000000..b28d9644
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.utils.interactions.doctree b/v8.2.0/.doctrees/output/botcore.utils.interactions.doctree
new file mode 100644
index 00000000..21f5363d
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.utils.logging.doctree b/v8.2.0/.doctrees/output/botcore.utils.logging.doctree
new file mode 100644
index 00000000..392dc498
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.utils.members.doctree b/v8.2.0/.doctrees/output/botcore.utils.members.doctree
new file mode 100644
index 00000000..fd7b19e1
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.utils.regex.doctree b/v8.2.0/.doctrees/output/botcore.utils.regex.doctree
new file mode 100644
index 00000000..4bc78ca8
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v8.2.0/.doctrees/output/botcore.utils.scheduling.doctree b/v8.2.0/.doctrees/output/botcore.utils.scheduling.doctree
new file mode 100644
index 00000000..fccf11f2
Binary files /dev/null and b/v8.2.0/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v8.2.0/.nojekyll b/v8.2.0/.nojekyll
new file mode 100644
index 00000000..e69de29b
diff --git a/v8.2.0/_sources/changelog.rst.txt b/v8.2.0/_sources/changelog.rst.txt
new file mode 100644
index 00000000..a36bcc16
--- /dev/null
+++ b/v8.2.0/_sources/changelog.rst.txt
@@ -0,0 +1,175 @@
+.. See docs for details on formatting your entries
+ https://releases.readthedocs.io/en/latest/concepts.html
+
+Changelog
+=========
+
+- :release:`8.2.0 <18th August 2022>`
+- :support:`125` Bump Discord.py to the stable :literal-url:`2.0 release
`.
+
+
+- :release:`8.1.0 <16th August 2022>`
+- :support:`124` Updated :obj:`botcore.utils.regex.DISCORD_INVITE` regex to optionally match leading "http[s]" and "www".
+
+
+- :release:`8.0.0 <27th July 2022>`
+- :breaking:`110` Bump async-rediscache to v1.0.0-rc2
+- :support:`108` Bump Python version to 3.10.*
+- :bug:`107 major` Declare aiodns as a project dependency.
+- :support:`107` Add a sample project with boilerplate and documentation explaining how to develop for bot-core.
+
+
+- :release:`7.5.0 <23rd July 2022>`
+- :feature:`101` Add a utility to clean a string or referenced message's content
+
+
+- :release:`7.4.0 <17th July 2022>`
+- :feature:`106` Add an optional ``message`` attr to :obj:`botcore.utils.interactions.ViewWithUserAndRoleCheck`. On view timeout, this message has its view removed if set.
+
+
+- :release:`7.3.1 <16th July 2022>`
+- :bug:`104` Fix :obj:`botcore.utils.interactions.DeleteMessageButton` not working due to using wrong delete method.
+
+
+- :release:`7.3.0 <16th July 2022>`
+- :feature:`103` Add a generic view :obj:`botcore.utils.interactions.ViewWithUserAndRoleCheck` that only allows specified users and roles to interaction with it
+- :feature:`103` Add a button :obj:`botcore.utils.interactions.DeleteMessageButton` that deletes the message attached to its parent view.
+
+
+- :release:`7.2.2 <9th July 2022>`
+- :bug:`98` Only close ``BotBase.stats._transport`` if ``BotBase.stats`` was created
+
+
+- :release:`7.2.1 <30th June 2022>`
+- :bug:`96` Fix attempts to connect to ``BotBase.statsd_url`` when it is None.
+- :bug:`91` Fix incorrect docstring for ``botcore.utils.member.handle_role_change``.
+- :bug:`91` Pass missing self parameter to ``BotBase.ping_services``.
+- :bug:`91` Add missing await to ``BotBase.ping_services`` in some cases.
+
+
+- :release:`7.2.0 <28th June 2022>`
+- :support:`93` Bump Discord.py to :literal-url:`0eb3d26 `:
+
+ - Adds support for auto mod, of which the new auto_mod MESSAGE_TYPE is needed for our filter system.
+
+
+- :release:`7.1.3 <30th May 2022>` 79
+- :support:`79` Add `sphinx-multiversion `_ to make available older doc versions.
+- :support:`79` Restore on-site changelog.
+
+
+- :release:`7.1.0 <24th May 2022>`
+- :feature:`78` Bump Discord.py to :literal-url:`4cbe8f5 `:
+
+ - This fixes a bug with permission resolution when dealing with timed out members.
+
+
+- :release:`7.0.0 <10th May 2022>`
+- :bug:`75 major` Capture all characters up to a whitespace in the Discord Invite regex.
+- :breaking:`75` Discord invite regex no longer returns a URL safe result, refer to documentation for safely handling it.
+
+
+- :release:`6.4.0 <26th April 2022>`
+- :feature:`72` Bump discord.py to :literal-url:`5a06fa5 `:
+
+ - Notably, one of the commits in this bump dynamically extends the timeout of ``Guild.chunk()`` based on the number or members, so it should actually work on our guild now.
+
+
+- :release:`6.3.2 <25th April 2022>`
+- :bug:`69` Actually use ``statsd_url`` when it gets passed to ``BotBase``.
+
+
+- :release:`6.3.1 <21st April 2022>`
+- :bug:`68` Correct version number in pyproject.toml
+
+
+- :release:`6.3.0 <21st April 2022>`
+- :feature:`-` (Committed directly to main) Don't load modules starting with ``_``
+
+
+- :release:`6.2.0 <21st April 2022>`
+- :feature:`66` Load each cog in it's own task to avoid a single cog crashing entire load process.
+
+
+- :release:`6.1.0 <20th April 2022>`
+- :feature:`65` Add ``unqualify`` to the ``botcore.utils`` namespace for use in bots that manipulate extensions.
+
+
+- :release:`6.0.0 <19th April 2022>`
+- :breaking:`64` Bump discord.py to :literal-url:`987235d `:
+
+ - This reverts a change to help command behaviour that broke our custom pagination
+ - This also adds basic forum channel support to discord.py
+
+
+- :release:`5.0.4 <18th April 2022>` 63
+
+ ..
+ Feature 63 Needs to be explicitly included above because it was improperly released within a bugfix version
+ instead of a minor release
+
+- :feature:`63` Allow passing an ``api_client`` to ``BotBase.__init__`` to specify the ``botcore.site_api.APIClient`` instance to use.
+
+
+- :release:`5.0.3 <18th April 2022>`
+- :bug:`61` Reconnect to redis session on setup if it is closed.
+
+
+- :release:`5.0.2 <5th April 2022>`
+- :bug:`56` Create a dummy ``AsyncstatsdClient`` before connecting to real url, in case a connection cannot be made on init.
+- :bug:`56` Move the creation of the ``asyncio.Event``, ``BotBase._guild_available`` to within the setup hook, to avoid a deprecation notice.
+
+
+- :release:`5.0.1 <2nd April 2022>`
+- :bug:`54` Move creation of BotBase's ``aiohttp.AsyncResolver`` to the async setup hook, to avoid deprecation notice
+
+
+- :release:`5.0.0 <2nd April 2022>`
+- :breaking:`42` Remove public extensions util.
+- :feature:`42` Add ``BotBase``, a ``discord.ext.commands.Bot`` sub-class, which abstracts a lot of logic shared between our bots.
+- :feature:`42` Add async statsd client.
+- :support:`42` Bump Discord.py to latest alpha commit.
+
+
+- :release:`4.0.0 <14th March 2022>`
+- :breaking:`39` Migrate back to Discord.py 2.0.
+
+
+- :release:`3.0.1 <5th March 2022>`
+- :bug:`37` Setup log tracing when ``botcore.utils.logging`` is imported so that it can be used within botcore functions.
+
+
+- :release:`3.0.0 <3rd March 2022>`
+- :breaking:`35` Move ``apply_monkey_patches()`` directly to `botcore.utils` namespace.
+
+
+- :release:`2.1.0 <24th February 2022>`
+- :feature:`34` Port the Site API wrapper from the bot repo.
+
+
+- :release:`2.0.0 <22nd February 2022>`
+- :breaking:`35` Moved regex to ``botcore.utils`` namespace
+- :breaking:`32` Migrate from discord.py 2.0a0 to disnake.
+- :feature:`32` Add common monkey patches.
+- :feature:`29` Port many common utilities from our bots:
+
+ - caching
+ - channel
+ - extensions
+ - loggers
+ - members
+ - scheduling
+- :support:`2` Added intersphinx to docs.
+
+
+- :release:`1.2.0 <9th January 2022>`
+- :feature:`12` Code block detection regex.
+
+
+- :release:`1.1.0 <2nd December 2021>`
+- :support:`2` Autogenerated docs.
+- :feature:`2` Regex utility.
+
+
+- :release:`1.0.0 <17th November 2021>`
+- :feature:`1` Core package, poetry, and linting CI.
diff --git a/v8.2.0/_sources/development.rst.txt b/v8.2.0/_sources/development.rst.txt
new file mode 100644
index 00000000..25b8e0a7
--- /dev/null
+++ b/v8.2.0/_sources/development.rst.txt
@@ -0,0 +1,2 @@
+.. Stub file to expose the README to sphinx
+.. include:: ../dev/README.rst
diff --git a/v8.2.0/_sources/index.rst.txt b/v8.2.0/_sources/index.rst.txt
new file mode 100644
index 00000000..aee7b269
--- /dev/null
+++ b/v8.2.0/_sources/index.rst.txt
@@ -0,0 +1,31 @@
+.. Generated by sphinx-quickstart on Thu Dec 2 01:21:15 2021.
+
+Bot Core Project Documentation
+==============================
+
+
+Reference
+====================================
+
+.. toctree::
+ :maxdepth: 4
+ :caption: Modules:
+
+ output/botcore
+
+.. toctree::
+ :caption: Other:
+ :hidden:
+
+ development
+ changelog
+
+
+Extras
+==================
+
+* :ref:`genindex`
+* :ref:`search`
+* :repo-file:`Information `
+* :doc:`development`
+* :doc:`changelog`
diff --git a/v8.2.0/_sources/output/botcore.async_stats.rst.txt b/v8.2.0/_sources/output/botcore.async_stats.rst.txt
new file mode 100644
index 00000000..7fdbbbe2
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.async_stats.rst.txt
@@ -0,0 +1,7 @@
+async\_stats
+===========================
+
+.. automodule:: botcore.async_stats
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_sources/output/botcore.exts.rst.txt b/v8.2.0/_sources/output/botcore.exts.rst.txt
new file mode 100644
index 00000000..38d2fc2e
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.exts.rst.txt
@@ -0,0 +1,7 @@
+Exts
+====
+
+.. automodule:: botcore.exts
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_sources/output/botcore.rst.txt b/v8.2.0/_sources/output/botcore.rst.txt
new file mode 100644
index 00000000..0a719da2
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.rst.txt
@@ -0,0 +1,25 @@
+Botcore
+=======
+
+.. automodule:: botcore
+ :members:
+ :special-members:
+ :show-inheritance:
+
+Subpackages
+-----------
+
+.. toctree::
+ :maxdepth: 4
+
+ botcore.exts
+ botcore.utils
+
+Submodules
+----------
+
+.. toctree::
+ :maxdepth: 4
+
+ botcore.async_stats
+ botcore.site_api
diff --git a/v8.2.0/_sources/output/botcore.site_api.rst.txt b/v8.2.0/_sources/output/botcore.site_api.rst.txt
new file mode 100644
index 00000000..2399bbc4
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.site_api.rst.txt
@@ -0,0 +1,7 @@
+site\_api
+========================
+
+.. automodule:: botcore.site_api
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_sources/output/botcore.utils.caching.rst.txt b/v8.2.0/_sources/output/botcore.utils.caching.rst.txt
new file mode 100644
index 00000000..02c2105d
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.utils.caching.rst.txt
@@ -0,0 +1,7 @@
+caching
+============================
+
+.. automodule:: botcore.utils.caching
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_sources/output/botcore.utils.channel.rst.txt b/v8.2.0/_sources/output/botcore.utils.channel.rst.txt
new file mode 100644
index 00000000..460975f4
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.utils.channel.rst.txt
@@ -0,0 +1,7 @@
+channel
+============================
+
+.. automodule:: botcore.utils.channel
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_sources/output/botcore.utils.commands.rst.txt b/v8.2.0/_sources/output/botcore.utils.commands.rst.txt
new file mode 100644
index 00000000..00ef02f6
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.utils.commands.rst.txt
@@ -0,0 +1,7 @@
+commands
+=============================
+
+.. automodule:: botcore.utils.commands
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_sources/output/botcore.utils.interactions.rst.txt b/v8.2.0/_sources/output/botcore.utils.interactions.rst.txt
new file mode 100644
index 00000000..bb8be82c
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.utils.interactions.rst.txt
@@ -0,0 +1,7 @@
+interactions
+=================================
+
+.. automodule:: botcore.utils.interactions
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_sources/output/botcore.utils.logging.rst.txt b/v8.2.0/_sources/output/botcore.utils.logging.rst.txt
new file mode 100644
index 00000000..a719bfa7
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.utils.logging.rst.txt
@@ -0,0 +1,7 @@
+logging
+============================
+
+.. automodule:: botcore.utils.logging
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_sources/output/botcore.utils.members.rst.txt b/v8.2.0/_sources/output/botcore.utils.members.rst.txt
new file mode 100644
index 00000000..ab65d36b
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.utils.members.rst.txt
@@ -0,0 +1,7 @@
+members
+============================
+
+.. automodule:: botcore.utils.members
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_sources/output/botcore.utils.regex.rst.txt b/v8.2.0/_sources/output/botcore.utils.regex.rst.txt
new file mode 100644
index 00000000..405e416a
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.utils.regex.rst.txt
@@ -0,0 +1,7 @@
+regex
+==========================
+
+.. automodule:: botcore.utils.regex
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_sources/output/botcore.utils.rst.txt b/v8.2.0/_sources/output/botcore.utils.rst.txt
new file mode 100644
index 00000000..a954585c
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.utils.rst.txt
@@ -0,0 +1,22 @@
+Utils
+=====
+
+.. automodule:: botcore.utils
+ :members:
+ :special-members:
+ :show-inheritance:
+
+Submodules
+----------
+
+.. toctree::
+ :maxdepth: 4
+
+ botcore.utils.caching
+ botcore.utils.channel
+ botcore.utils.commands
+ botcore.utils.interactions
+ botcore.utils.logging
+ botcore.utils.members
+ botcore.utils.regex
+ botcore.utils.scheduling
diff --git a/v8.2.0/_sources/output/botcore.utils.scheduling.rst.txt b/v8.2.0/_sources/output/botcore.utils.scheduling.rst.txt
new file mode 100644
index 00000000..41ffe1c6
--- /dev/null
+++ b/v8.2.0/_sources/output/botcore.utils.scheduling.rst.txt
@@ -0,0 +1,7 @@
+scheduling
+===============================
+
+.. automodule:: botcore.utils.scheduling
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.2.0/_static/_sphinx_javascript_frameworks_compat.js b/v8.2.0/_static/_sphinx_javascript_frameworks_compat.js
new file mode 100644
index 00000000..8549469d
--- /dev/null
+++ b/v8.2.0/_static/_sphinx_javascript_frameworks_compat.js
@@ -0,0 +1,134 @@
+/*
+ * _sphinx_javascript_frameworks_compat.js
+ * ~~~~~~~~~~
+ *
+ * Compatability shim for jQuery and underscores.js.
+ *
+ * WILL BE REMOVED IN Sphinx 6.0
+ * xref RemovedInSphinx60Warning
+ *
+ */
+
+/**
+ * select a different prefix for underscore
+ */
+$u = _.noConflict();
+
+
+/**
+ * small helper function to urldecode strings
+ *
+ * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL
+ */
+jQuery.urldecode = function(x) {
+ if (!x) {
+ return x
+ }
+ return decodeURIComponent(x.replace(/\+/g, ' '));
+};
+
+/**
+ * small helper function to urlencode strings
+ */
+jQuery.urlencode = encodeURIComponent;
+
+/**
+ * This function returns the parsed url parameters of the
+ * current request. Multiple values per key are supported,
+ * it will always return arrays of strings for the value parts.
+ */
+jQuery.getQueryParameters = function(s) {
+ if (typeof s === 'undefined')
+ s = document.location.search;
+ var parts = s.substr(s.indexOf('?') + 1).split('&');
+ var result = {};
+ for (var i = 0; i < parts.length; i++) {
+ var tmp = parts[i].split('=', 2);
+ var key = jQuery.urldecode(tmp[0]);
+ var value = jQuery.urldecode(tmp[1]);
+ if (key in result)
+ result[key].push(value);
+ else
+ result[key] = [value];
+ }
+ return result;
+};
+
+/**
+ * highlight a given string on a jquery object by wrapping it in
+ * span elements with the given class name.
+ */
+jQuery.fn.highlightText = function(text, className) {
+ function highlight(node, addItems) {
+ if (node.nodeType === 3) {
+ var val = node.nodeValue;
+ var pos = val.toLowerCase().indexOf(text);
+ if (pos >= 0 &&
+ !jQuery(node.parentNode).hasClass(className) &&
+ !jQuery(node.parentNode).hasClass("nohighlight")) {
+ var span;
+ var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg");
+ if (isInSVG) {
+ span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
+ } else {
+ span = document.createElement("span");
+ span.className = className;
+ }
+ span.appendChild(document.createTextNode(val.substr(pos, text.length)));
+ node.parentNode.insertBefore(span, node.parentNode.insertBefore(
+ document.createTextNode(val.substr(pos + text.length)),
+ node.nextSibling));
+ node.nodeValue = val.substr(0, pos);
+ if (isInSVG) {
+ var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
+ var bbox = node.parentElement.getBBox();
+ rect.x.baseVal.value = bbox.x;
+ rect.y.baseVal.value = bbox.y;
+ rect.width.baseVal.value = bbox.width;
+ rect.height.baseVal.value = bbox.height;
+ rect.setAttribute('class', className);
+ addItems.push({
+ "parent": node.parentNode,
+ "target": rect});
+ }
+ }
+ }
+ else if (!jQuery(node).is("button, select, textarea")) {
+ jQuery.each(node.childNodes, function() {
+ highlight(this, addItems);
+ });
+ }
+ }
+ var addItems = [];
+ var result = this.each(function() {
+ highlight(this, addItems);
+ });
+ for (var i = 0; i < addItems.length; ++i) {
+ jQuery(addItems[i].parent).before(addItems[i].target);
+ }
+ return result;
+};
+
+/*
+ * backward compatibility for jQuery.browser
+ * This will be supported until firefox bug is fixed.
+ */
+if (!jQuery.browser) {
+ jQuery.uaMatch = function(ua) {
+ ua = ua.toLowerCase();
+
+ var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
+ /(webkit)[ \/]([\w.]+)/.exec(ua) ||
+ /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
+ /(msie) ([\w.]+)/.exec(ua) ||
+ ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) ||
+ [];
+
+ return {
+ browser: match[ 1 ] || "",
+ version: match[ 2 ] || "0"
+ };
+ };
+ jQuery.browser = {};
+ jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true;
+}
diff --git a/v8.2.0/_static/basic.css b/v8.2.0/_static/basic.css
new file mode 100644
index 00000000..4e9a9f1f
--- /dev/null
+++ b/v8.2.0/_static/basic.css
@@ -0,0 +1,900 @@
+/*
+ * basic.css
+ * ~~~~~~~~~
+ *
+ * Sphinx stylesheet -- basic theme.
+ *
+ * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
+ * :license: BSD, see LICENSE for details.
+ *
+ */
+
+/* -- main layout ----------------------------------------------------------- */
+
+div.clearer {
+ clear: both;
+}
+
+div.section::after {
+ display: block;
+ content: '';
+ clear: left;
+}
+
+/* -- relbar ---------------------------------------------------------------- */
+
+div.related {
+ width: 100%;
+ font-size: 90%;
+}
+
+div.related h3 {
+ display: none;
+}
+
+div.related ul {
+ margin: 0;
+ padding: 0 0 0 10px;
+ list-style: none;
+}
+
+div.related li {
+ display: inline;
+}
+
+div.related li.right {
+ float: right;
+ margin-right: 5px;
+}
+
+/* -- sidebar --------------------------------------------------------------- */
+
+div.sphinxsidebarwrapper {
+ padding: 10px 5px 0 10px;
+}
+
+div.sphinxsidebar {
+ float: left;
+ width: 230px;
+ margin-left: -100%;
+ font-size: 90%;
+ word-wrap: break-word;
+ overflow-wrap : break-word;
+}
+
+div.sphinxsidebar ul {
+ list-style: none;
+}
+
+div.sphinxsidebar ul ul,
+div.sphinxsidebar ul.want-points {
+ margin-left: 20px;
+ list-style: square;
+}
+
+div.sphinxsidebar ul ul {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+div.sphinxsidebar form {
+ margin-top: 10px;
+}
+
+div.sphinxsidebar input {
+ border: 1px solid #98dbcc;
+ font-family: sans-serif;
+ font-size: 1em;
+}
+
+div.sphinxsidebar #searchbox form.search {
+ overflow: hidden;
+}
+
+div.sphinxsidebar #searchbox input[type="text"] {
+ float: left;
+ width: 80%;
+ padding: 0.25em;
+ box-sizing: border-box;
+}
+
+div.sphinxsidebar #searchbox input[type="submit"] {
+ float: left;
+ width: 20%;
+ border-left: none;
+ padding: 0.25em;
+ box-sizing: border-box;
+}
+
+
+img {
+ border: 0;
+ max-width: 100%;
+}
+
+/* -- search page ----------------------------------------------------------- */
+
+ul.search {
+ margin: 10px 0 0 20px;
+ padding: 0;
+}
+
+ul.search li {
+ padding: 5px 0 5px 20px;
+ background-image: url(file.png);
+ background-repeat: no-repeat;
+ background-position: 0 7px;
+}
+
+ul.search li a {
+ font-weight: bold;
+}
+
+ul.search li p.context {
+ color: #888;
+ margin: 2px 0 0 30px;
+ text-align: left;
+}
+
+ul.keywordmatches li.goodmatch a {
+ font-weight: bold;
+}
+
+/* -- index page ------------------------------------------------------------ */
+
+table.contentstable {
+ width: 90%;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+table.contentstable p.biglink {
+ line-height: 150%;
+}
+
+a.biglink {
+ font-size: 1.3em;
+}
+
+span.linkdescr {
+ font-style: italic;
+ padding-top: 5px;
+ font-size: 90%;
+}
+
+/* -- general index --------------------------------------------------------- */
+
+table.indextable {
+ width: 100%;
+}
+
+table.indextable td {
+ text-align: left;
+ vertical-align: top;
+}
+
+table.indextable ul {
+ margin-top: 0;
+ margin-bottom: 0;
+ list-style-type: none;
+}
+
+table.indextable > tbody > tr > td > ul {
+ padding-left: 0em;
+}
+
+table.indextable tr.pcap {
+ height: 10px;
+}
+
+table.indextable tr.cap {
+ margin-top: 10px;
+ background-color: #f2f2f2;
+}
+
+img.toggler {
+ margin-right: 3px;
+ margin-top: 3px;
+ cursor: pointer;
+}
+
+div.modindex-jumpbox {
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #ddd;
+ margin: 1em 0 1em 0;
+ padding: 0.4em;
+}
+
+div.genindex-jumpbox {
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #ddd;
+ margin: 1em 0 1em 0;
+ padding: 0.4em;
+}
+
+/* -- domain module index --------------------------------------------------- */
+
+table.modindextable td {
+ padding: 2px;
+ border-collapse: collapse;
+}
+
+/* -- general body styles --------------------------------------------------- */
+
+div.body {
+ min-width: 360px;
+ max-width: 800px;
+}
+
+div.body p, div.body dd, div.body li, div.body blockquote {
+ -moz-hyphens: auto;
+ -ms-hyphens: auto;
+ -webkit-hyphens: auto;
+ hyphens: auto;
+}
+
+a.headerlink {
+ visibility: hidden;
+}
+
+h1:hover > a.headerlink,
+h2:hover > a.headerlink,
+h3:hover > a.headerlink,
+h4:hover > a.headerlink,
+h5:hover > a.headerlink,
+h6:hover > a.headerlink,
+dt:hover > a.headerlink,
+caption:hover > a.headerlink,
+p.caption:hover > a.headerlink,
+div.code-block-caption:hover > a.headerlink {
+ visibility: visible;
+}
+
+div.body p.caption {
+ text-align: inherit;
+}
+
+div.body td {
+ text-align: left;
+}
+
+.first {
+ margin-top: 0 !important;
+}
+
+p.rubric {
+ margin-top: 30px;
+ font-weight: bold;
+}
+
+img.align-left, figure.align-left, .figure.align-left, object.align-left {
+ clear: left;
+ float: left;
+ margin-right: 1em;
+}
+
+img.align-right, figure.align-right, .figure.align-right, object.align-right {
+ clear: right;
+ float: right;
+ margin-left: 1em;
+}
+
+img.align-center, figure.align-center, .figure.align-center, object.align-center {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+img.align-default, figure.align-default, .figure.align-default {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.align-left {
+ text-align: left;
+}
+
+.align-center {
+ text-align: center;
+}
+
+.align-default {
+ text-align: center;
+}
+
+.align-right {
+ text-align: right;
+}
+
+/* -- sidebars -------------------------------------------------------------- */
+
+div.sidebar,
+aside.sidebar {
+ margin: 0 0 0.5em 1em;
+ border: 1px solid #ddb;
+ padding: 7px;
+ background-color: #ffe;
+ width: 40%;
+ float: right;
+ clear: right;
+ overflow-x: auto;
+}
+
+p.sidebar-title {
+ font-weight: bold;
+}
+nav.contents,
+aside.topic,
+div.admonition, div.topic, blockquote {
+ clear: left;
+}
+
+/* -- topics ---------------------------------------------------------------- */
+nav.contents,
+aside.topic,
+div.topic {
+ border: 1px solid #ccc;
+ padding: 7px;
+ margin: 10px 0 10px 0;
+}
+
+p.topic-title {
+ font-size: 1.1em;
+ font-weight: bold;
+ margin-top: 10px;
+}
+
+/* -- admonitions ----------------------------------------------------------- */
+
+div.admonition {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ padding: 7px;
+}
+
+div.admonition dt {
+ font-weight: bold;
+}
+
+p.admonition-title {
+ margin: 0px 10px 5px 0px;
+ font-weight: bold;
+}
+
+div.body p.centered {
+ text-align: center;
+ margin-top: 25px;
+}
+
+/* -- content of sidebars/topics/admonitions -------------------------------- */
+
+div.sidebar > :last-child,
+aside.sidebar > :last-child,
+nav.contents > :last-child,
+aside.topic > :last-child,
+div.topic > :last-child,
+div.admonition > :last-child {
+ margin-bottom: 0;
+}
+
+div.sidebar::after,
+aside.sidebar::after,
+nav.contents::after,
+aside.topic::after,
+div.topic::after,
+div.admonition::after,
+blockquote::after {
+ display: block;
+ content: '';
+ clear: both;
+}
+
+/* -- tables ---------------------------------------------------------------- */
+
+table.docutils {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ border: 0;
+ border-collapse: collapse;
+}
+
+table.align-center {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+table.align-default {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+table caption span.caption-number {
+ font-style: italic;
+}
+
+table caption span.caption-text {
+}
+
+table.docutils td, table.docutils th {
+ padding: 1px 8px 1px 5px;
+ border-top: 0;
+ border-left: 0;
+ border-right: 0;
+ border-bottom: 1px solid #aaa;
+}
+
+th {
+ text-align: left;
+ padding-right: 5px;
+}
+
+table.citation {
+ border-left: solid 1px gray;
+ margin-left: 1px;
+}
+
+table.citation td {
+ border-bottom: none;
+}
+
+th > :first-child,
+td > :first-child {
+ margin-top: 0px;
+}
+
+th > :last-child,
+td > :last-child {
+ margin-bottom: 0px;
+}
+
+/* -- figures --------------------------------------------------------------- */
+
+div.figure, figure {
+ margin: 0.5em;
+ padding: 0.5em;
+}
+
+div.figure p.caption, figcaption {
+ padding: 0.3em;
+}
+
+div.figure p.caption span.caption-number,
+figcaption span.caption-number {
+ font-style: italic;
+}
+
+div.figure p.caption span.caption-text,
+figcaption span.caption-text {
+}
+
+/* -- field list styles ----------------------------------------------------- */
+
+table.field-list td, table.field-list th {
+ border: 0 !important;
+}
+
+.field-list ul {
+ margin: 0;
+ padding-left: 1em;
+}
+
+.field-list p {
+ margin: 0;
+}
+
+.field-name {
+ -moz-hyphens: manual;
+ -ms-hyphens: manual;
+ -webkit-hyphens: manual;
+ hyphens: manual;
+}
+
+/* -- hlist styles ---------------------------------------------------------- */
+
+table.hlist {
+ margin: 1em 0;
+}
+
+table.hlist td {
+ vertical-align: top;
+}
+
+/* -- object description styles --------------------------------------------- */
+
+.sig {
+ font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
+}
+
+.sig-name, code.descname {
+ background-color: transparent;
+ font-weight: bold;
+}
+
+.sig-name {
+ font-size: 1.1em;
+}
+
+code.descname {
+ font-size: 1.2em;
+}
+
+.sig-prename, code.descclassname {
+ background-color: transparent;
+}
+
+.optional {
+ font-size: 1.3em;
+}
+
+.sig-paren {
+ font-size: larger;
+}
+
+.sig-param.n {
+ font-style: italic;
+}
+
+/* C++ specific styling */
+
+.sig-inline.c-texpr,
+.sig-inline.cpp-texpr {
+ font-family: unset;
+}
+
+.sig.c .k, .sig.c .kt,
+.sig.cpp .k, .sig.cpp .kt {
+ color: #0033B3;
+}
+
+.sig.c .m,
+.sig.cpp .m {
+ color: #1750EB;
+}
+
+.sig.c .s, .sig.c .sc,
+.sig.cpp .s, .sig.cpp .sc {
+ color: #067D17;
+}
+
+
+/* -- other body styles ----------------------------------------------------- */
+
+ol.arabic {
+ list-style: decimal;
+}
+
+ol.loweralpha {
+ list-style: lower-alpha;
+}
+
+ol.upperalpha {
+ list-style: upper-alpha;
+}
+
+ol.lowerroman {
+ list-style: lower-roman;
+}
+
+ol.upperroman {
+ list-style: upper-roman;
+}
+
+:not(li) > ol > li:first-child > :first-child,
+:not(li) > ul > li:first-child > :first-child {
+ margin-top: 0px;
+}
+
+:not(li) > ol > li:last-child > :last-child,
+:not(li) > ul > li:last-child > :last-child {
+ margin-bottom: 0px;
+}
+
+ol.simple ol p,
+ol.simple ul p,
+ul.simple ol p,
+ul.simple ul p {
+ margin-top: 0;
+}
+
+ol.simple > li:not(:first-child) > p,
+ul.simple > li:not(:first-child) > p {
+ margin-top: 0;
+}
+
+ol.simple p,
+ul.simple p {
+ margin-bottom: 0;
+}
+aside.footnote > span,
+div.citation > span {
+ float: left;
+}
+aside.footnote > span:last-of-type,
+div.citation > span:last-of-type {
+ padding-right: 0.5em;
+}
+aside.footnote > p {
+ margin-left: 2em;
+}
+div.citation > p {
+ margin-left: 4em;
+}
+aside.footnote > p:last-of-type,
+div.citation > p:last-of-type {
+ margin-bottom: 0em;
+}
+aside.footnote > p:last-of-type:after,
+div.citation > p:last-of-type:after {
+ content: "";
+ clear: both;
+}
+
+dl.field-list {
+ display: grid;
+ grid-template-columns: fit-content(30%) auto;
+}
+
+dl.field-list > dt {
+ font-weight: bold;
+ word-break: break-word;
+ padding-left: 0.5em;
+ padding-right: 5px;
+}
+
+dl.field-list > dd {
+ padding-left: 0.5em;
+ margin-top: 0em;
+ margin-left: 0em;
+ margin-bottom: 0em;
+}
+
+dl {
+ margin-bottom: 15px;
+}
+
+dd > :first-child {
+ margin-top: 0px;
+}
+
+dd ul, dd table {
+ margin-bottom: 10px;
+}
+
+dd {
+ margin-top: 3px;
+ margin-bottom: 10px;
+ margin-left: 30px;
+}
+
+dl > dd:last-child,
+dl > dd:last-child > :last-child {
+ margin-bottom: 0;
+}
+
+dt:target, span.highlighted {
+ background-color: #fbe54e;
+}
+
+rect.highlighted {
+ fill: #fbe54e;
+}
+
+dl.glossary dt {
+ font-weight: bold;
+ font-size: 1.1em;
+}
+
+.versionmodified {
+ font-style: italic;
+}
+
+.system-message {
+ background-color: #fda;
+ padding: 5px;
+ border: 3px solid red;
+}
+
+.footnote:target {
+ background-color: #ffa;
+}
+
+.line-block {
+ display: block;
+ margin-top: 1em;
+ margin-bottom: 1em;
+}
+
+.line-block .line-block {
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: 1.5em;
+}
+
+.guilabel, .menuselection {
+ font-family: sans-serif;
+}
+
+.accelerator {
+ text-decoration: underline;
+}
+
+.classifier {
+ font-style: oblique;
+}
+
+.classifier:before {
+ font-style: normal;
+ margin: 0 0.5em;
+ content: ":";
+ display: inline-block;
+}
+
+abbr, acronym {
+ border-bottom: dotted 1px;
+ cursor: help;
+}
+
+/* -- code displays --------------------------------------------------------- */
+
+pre {
+ overflow: auto;
+ overflow-y: hidden; /* fixes display issues on Chrome browsers */
+}
+
+pre, div[class*="highlight-"] {
+ clear: both;
+}
+
+span.pre {
+ -moz-hyphens: none;
+ -ms-hyphens: none;
+ -webkit-hyphens: none;
+ hyphens: none;
+ white-space: nowrap;
+}
+
+div[class*="highlight-"] {
+ margin: 1em 0;
+}
+
+td.linenos pre {
+ border: 0;
+ background-color: transparent;
+ color: #aaa;
+}
+
+table.highlighttable {
+ display: block;
+}
+
+table.highlighttable tbody {
+ display: block;
+}
+
+table.highlighttable tr {
+ display: flex;
+}
+
+table.highlighttable td {
+ margin: 0;
+ padding: 0;
+}
+
+table.highlighttable td.linenos {
+ padding-right: 0.5em;
+}
+
+table.highlighttable td.code {
+ flex: 1;
+ overflow: hidden;
+}
+
+.highlight .hll {
+ display: block;
+}
+
+div.highlight pre,
+table.highlighttable pre {
+ margin: 0;
+}
+
+div.code-block-caption + div {
+ margin-top: 0;
+}
+
+div.code-block-caption {
+ margin-top: 1em;
+ padding: 2px 5px;
+ font-size: small;
+}
+
+div.code-block-caption code {
+ background-color: transparent;
+}
+
+table.highlighttable td.linenos,
+span.linenos,
+div.highlight span.gp { /* gp: Generic.Prompt */
+ user-select: none;
+ -webkit-user-select: text; /* Safari fallback only */
+ -webkit-user-select: none; /* Chrome/Safari */
+ -moz-user-select: none; /* Firefox */
+ -ms-user-select: none; /* IE10+ */
+}
+
+div.code-block-caption span.caption-number {
+ padding: 0.1em 0.3em;
+ font-style: italic;
+}
+
+div.code-block-caption span.caption-text {
+}
+
+div.literal-block-wrapper {
+ margin: 1em 0;
+}
+
+code.xref, a code {
+ background-color: transparent;
+ font-weight: bold;
+}
+
+h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
+ background-color: transparent;
+}
+
+.viewcode-link {
+ float: right;
+}
+
+.viewcode-back {
+ float: right;
+ font-family: sans-serif;
+}
+
+div.viewcode-block:target {
+ margin: -1px -10px;
+ padding: 0 10px;
+}
+
+/* -- math display ---------------------------------------------------------- */
+
+img.math {
+ vertical-align: middle;
+}
+
+div.body div.math p {
+ text-align: center;
+}
+
+span.eqno {
+ float: right;
+}
+
+span.eqno a.headerlink {
+ position: absolute;
+ z-index: 1;
+}
+
+div.math:hover a.headerlink {
+ visibility: visible;
+}
+
+/* -- printout stylesheet --------------------------------------------------- */
+
+@media print {
+ div.document,
+ div.documentwrapper,
+ div.bodywrapper {
+ margin: 0 !important;
+ width: 100%;
+ }
+
+ div.sphinxsidebar,
+ div.related,
+ div.footer,
+ #top-link {
+ display: none;
+ }
+}
\ No newline at end of file
diff --git a/v8.2.0/_static/changelog.css b/v8.2.0/_static/changelog.css
new file mode 100644
index 00000000..343792a1
--- /dev/null
+++ b/v8.2.0/_static/changelog.css
@@ -0,0 +1,11 @@
+[data-theme='dark'] #changelog .dark,
+[data-theme='light'] #changelog .light,
+[data-theme='auto'] #changelog .light {
+ display: inline;
+}
+
+[data-theme='dark'] #changelog .light,
+[data-theme='light'] #changelog .dark,
+[data-theme='auto'] #changelog .dark {
+ display: none;
+}
diff --git a/v8.2.0/_static/changelog.js b/v8.2.0/_static/changelog.js
new file mode 100644
index 00000000..94834eaa
--- /dev/null
+++ b/v8.2.0/_static/changelog.js
@@ -0,0 +1,41 @@
+/** Update the changelog colors in dark mode */
+function changelog_color_main() {
+ const changelog = document.getElementById("changelog");
+
+ function updateEntryColor(span) {
+ const lightColorSpan = span;
+ const darkColorSpan = lightColorSpan.cloneNode(true);
+
+ lightColorSpan.parentElement.insertBefore(darkColorSpan, lightColorSpan);
+
+ lightColorSpan.classList.add("light");
+ darkColorSpan.classList.add("dark");
+
+ let color;
+ switch (darkColorSpan.textContent) {
+ case "Feature":
+ color = "#5BF38E";
+ break;
+ case "Support":
+ color = "#55A5E7";
+ break;
+ case "Bug":
+ color = "#E14F4F";
+ break;
+ default:
+ color = lightColorSpan.style.color;
+ }
+
+ darkColorSpan.style["color"] = color;
+ }
+
+ const TYPES = ["Feature", "Bug", "Support", "Breaking"];
+
+ if (changelog !== null) {
+ Array.from(changelog.getElementsByTagName("span"))
+ .filter(value => TYPES.includes(value.textContent))
+ .forEach(updateEntryColor)
+ }
+}
+
+changelog_color_main();
diff --git a/v8.2.0/_static/debug.css b/v8.2.0/_static/debug.css
new file mode 100644
index 00000000..3264805c
--- /dev/null
+++ b/v8.2.0/_static/debug.css
@@ -0,0 +1,69 @@
+/*
+ This CSS file should be overridden by the theme authors. It's
+ meant for debugging and developing the skeleton that this theme provides.
+*/
+body {
+ font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
+ "Apple Color Emoji", "Segoe UI Emoji";
+ background: lavender;
+}
+.sb-announcement {
+ background: rgb(131, 131, 131);
+}
+.sb-announcement__inner {
+ background: black;
+ color: white;
+}
+.sb-header {
+ background: lightskyblue;
+}
+.sb-header__inner {
+ background: royalblue;
+ color: white;
+}
+.sb-header-secondary {
+ background: lightcyan;
+}
+.sb-header-secondary__inner {
+ background: cornflowerblue;
+ color: white;
+}
+.sb-sidebar-primary {
+ background: lightgreen;
+}
+.sb-main {
+ background: blanchedalmond;
+}
+.sb-main__inner {
+ background: antiquewhite;
+}
+.sb-header-article {
+ background: lightsteelblue;
+}
+.sb-article-container {
+ background: snow;
+}
+.sb-article-main {
+ background: white;
+}
+.sb-footer-article {
+ background: lightpink;
+}
+.sb-sidebar-secondary {
+ background: lightgoldenrodyellow;
+}
+.sb-footer-content {
+ background: plum;
+}
+.sb-footer-content__inner {
+ background: palevioletred;
+}
+.sb-footer {
+ background: pink;
+}
+.sb-footer__inner {
+ background: salmon;
+}
+[role="main"] {
+ background: white;
+}
diff --git a/v8.2.0/_static/doctools.js b/v8.2.0/_static/doctools.js
new file mode 100644
index 00000000..c3db08d1
--- /dev/null
+++ b/v8.2.0/_static/doctools.js
@@ -0,0 +1,264 @@
+/*
+ * doctools.js
+ * ~~~~~~~~~~~
+ *
+ * Base JavaScript utilities for all Sphinx HTML documentation.
+ *
+ * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
+ * :license: BSD, see LICENSE for details.
+ *
+ */
+"use strict";
+
+const _ready = (callback) => {
+ if (document.readyState !== "loading") {
+ callback();
+ } else {
+ document.addEventListener("DOMContentLoaded", callback);
+ }
+};
+
+/**
+ * highlight a given string on a node by wrapping it in
+ * span elements with the given class name.
+ */
+const _highlight = (node, addItems, text, className) => {
+ if (node.nodeType === Node.TEXT_NODE) {
+ const val = node.nodeValue;
+ const parent = node.parentNode;
+ const pos = val.toLowerCase().indexOf(text);
+ if (
+ pos >= 0 &&
+ !parent.classList.contains(className) &&
+ !parent.classList.contains("nohighlight")
+ ) {
+ let span;
+
+ const closestNode = parent.closest("body, svg, foreignObject");
+ const isInSVG = closestNode && closestNode.matches("svg");
+ if (isInSVG) {
+ span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
+ } else {
+ span = document.createElement("span");
+ span.classList.add(className);
+ }
+
+ span.appendChild(document.createTextNode(val.substr(pos, text.length)));
+ parent.insertBefore(
+ span,
+ parent.insertBefore(
+ document.createTextNode(val.substr(pos + text.length)),
+ node.nextSibling
+ )
+ );
+ node.nodeValue = val.substr(0, pos);
+
+ if (isInSVG) {
+ const rect = document.createElementNS(
+ "http://www.w3.org/2000/svg",
+ "rect"
+ );
+ const bbox = parent.getBBox();
+ rect.x.baseVal.value = bbox.x;
+ rect.y.baseVal.value = bbox.y;
+ rect.width.baseVal.value = bbox.width;
+ rect.height.baseVal.value = bbox.height;
+ rect.setAttribute("class", className);
+ addItems.push({ parent: parent, target: rect });
+ }
+ }
+ } else if (node.matches && !node.matches("button, select, textarea")) {
+ node.childNodes.forEach((el) => _highlight(el, addItems, text, className));
+ }
+};
+const _highlightText = (thisNode, text, className) => {
+ let addItems = [];
+ _highlight(thisNode, addItems, text, className);
+ addItems.forEach((obj) =>
+ obj.parent.insertAdjacentElement("beforebegin", obj.target)
+ );
+};
+
+/**
+ * Small JavaScript module for the documentation.
+ */
+const Documentation = {
+ init: () => {
+ Documentation.highlightSearchWords();
+ Documentation.initDomainIndexTable();
+ Documentation.initOnKeyListeners();
+ },
+
+ /**
+ * i18n support
+ */
+ TRANSLATIONS: {},
+ PLURAL_EXPR: (n) => (n === 1 ? 0 : 1),
+ LOCALE: "unknown",
+
+ // gettext and ngettext don't access this so that the functions
+ // can safely bound to a different name (_ = Documentation.gettext)
+ gettext: (string) => {
+ const translated = Documentation.TRANSLATIONS[string];
+ switch (typeof translated) {
+ case "undefined":
+ return string; // no translation
+ case "string":
+ return translated; // translation exists
+ default:
+ return translated[0]; // (singular, plural) translation tuple exists
+ }
+ },
+
+ ngettext: (singular, plural, n) => {
+ const translated = Documentation.TRANSLATIONS[singular];
+ if (typeof translated !== "undefined")
+ return translated[Documentation.PLURAL_EXPR(n)];
+ return n === 1 ? singular : plural;
+ },
+
+ addTranslations: (catalog) => {
+ Object.assign(Documentation.TRANSLATIONS, catalog.messages);
+ Documentation.PLURAL_EXPR = new Function(
+ "n",
+ `return (${catalog.plural_expr})`
+ );
+ Documentation.LOCALE = catalog.locale;
+ },
+
+ /**
+ * highlight the search words provided in the url in the text
+ */
+ highlightSearchWords: () => {
+ const highlight =
+ new URLSearchParams(window.location.search).get("highlight") || "";
+ const terms = highlight.toLowerCase().split(/\s+/).filter(x => x);
+ if (terms.length === 0) return; // nothing to do
+
+ // There should never be more than one element matching "div.body"
+ const divBody = document.querySelectorAll("div.body");
+ const body = divBody.length ? divBody[0] : document.querySelector("body");
+ window.setTimeout(() => {
+ terms.forEach((term) => _highlightText(body, term, "highlighted"));
+ }, 10);
+
+ const searchBox = document.getElementById("searchbox");
+ if (searchBox === null) return;
+ searchBox.appendChild(
+ document
+ .createRange()
+ .createContextualFragment(
+ '' +
+ '' +
+ Documentation.gettext("Hide Search Matches") +
+ "
"
+ )
+ );
+ },
+
+ /**
+ * helper function to hide the search marks again
+ */
+ hideSearchWords: () => {
+ document
+ .querySelectorAll("#searchbox .highlight-link")
+ .forEach((el) => el.remove());
+ document
+ .querySelectorAll("span.highlighted")
+ .forEach((el) => el.classList.remove("highlighted"));
+ const url = new URL(window.location);
+ url.searchParams.delete("highlight");
+ window.history.replaceState({}, "", url);
+ },
+
+ /**
+ * helper function to focus on search bar
+ */
+ focusSearchBar: () => {
+ document.querySelectorAll("input[name=q]")[0]?.focus();
+ },
+
+ /**
+ * Initialise the domain index toggle buttons
+ */
+ initDomainIndexTable: () => {
+ const toggler = (el) => {
+ const idNumber = el.id.substr(7);
+ const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`);
+ if (el.src.substr(-9) === "minus.png") {
+ el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`;
+ toggledRows.forEach((el) => (el.style.display = "none"));
+ } else {
+ el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`;
+ toggledRows.forEach((el) => (el.style.display = ""));
+ }
+ };
+
+ const togglerElements = document.querySelectorAll("img.toggler");
+ togglerElements.forEach((el) =>
+ el.addEventListener("click", (event) => toggler(event.currentTarget))
+ );
+ togglerElements.forEach((el) => (el.style.display = ""));
+ if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler);
+ },
+
+ initOnKeyListeners: () => {
+ // only install a listener if it is really needed
+ if (
+ !DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS &&
+ !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS
+ )
+ return;
+
+ const blacklistedElements = new Set([
+ "TEXTAREA",
+ "INPUT",
+ "SELECT",
+ "BUTTON",
+ ]);
+ document.addEventListener("keydown", (event) => {
+ if (blacklistedElements.has(document.activeElement.tagName)) return; // bail for input elements
+ if (event.altKey || event.ctrlKey || event.metaKey) return; // bail with special keys
+
+ if (!event.shiftKey) {
+ switch (event.key) {
+ case "ArrowLeft":
+ if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;
+
+ const prevLink = document.querySelector('link[rel="prev"]');
+ if (prevLink && prevLink.href) {
+ window.location.href = prevLink.href;
+ event.preventDefault();
+ }
+ break;
+ case "ArrowRight":
+ if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;
+
+ const nextLink = document.querySelector('link[rel="next"]');
+ if (nextLink && nextLink.href) {
+ window.location.href = nextLink.href;
+ event.preventDefault();
+ }
+ break;
+ case "Escape":
+ if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break;
+ Documentation.hideSearchWords();
+ event.preventDefault();
+ }
+ }
+
+ // some keyboard layouts may need Shift to get /
+ switch (event.key) {
+ case "/":
+ if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break;
+ Documentation.focusSearchBar();
+ event.preventDefault();
+ }
+ });
+ },
+};
+
+// quick alias for translations
+const _ = Documentation.gettext;
+
+_ready(Documentation.init);
diff --git a/v8.2.0/_static/documentation_options.js b/v8.2.0/_static/documentation_options.js
new file mode 100644
index 00000000..cbeeae47
--- /dev/null
+++ b/v8.2.0/_static/documentation_options.js
@@ -0,0 +1,14 @@
+var DOCUMENTATION_OPTIONS = {
+ URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
+ VERSION: '8.2.0',
+ LANGUAGE: 'en',
+ COLLAPSE_INDEX: false,
+ BUILDER: 'html',
+ FILE_SUFFIX: '.html',
+ LINK_SUFFIX: '.html',
+ HAS_SOURCE: true,
+ SOURCELINK_SUFFIX: '.txt',
+ NAVIGATION_WITH_KEYS: false,
+ SHOW_SEARCH_SUMMARY: true,
+ ENABLE_SEARCH_SHORTCUTS: true,
+};
\ No newline at end of file
diff --git a/v8.2.0/_static/file.png b/v8.2.0/_static/file.png
new file mode 100644
index 00000000..a858a410
Binary files /dev/null and b/v8.2.0/_static/file.png differ
diff --git a/v8.2.0/_static/index.css b/v8.2.0/_static/index.css
new file mode 100644
index 00000000..54f3f771
--- /dev/null
+++ b/v8.2.0/_static/index.css
@@ -0,0 +1,3 @@
+h1 {
+ font-weight: 300;
+}
diff --git a/v8.2.0/_static/jquery-3.6.0.js b/v8.2.0/_static/jquery-3.6.0.js
new file mode 100644
index 00000000..fc6c299b
--- /dev/null
+++ b/v8.2.0/_static/jquery-3.6.0.js
@@ -0,0 +1,10881 @@
+/*!
+ * jQuery JavaScript Library v3.6.0
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright OpenJS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2021-03-02T17:08Z
+ */
+( function( global, factory ) {
+
+ "use strict";
+
+ if ( typeof module === "object" && typeof module.exports === "object" ) {
+
+ // For CommonJS and CommonJS-like environments where a proper `window`
+ // is present, execute the factory and get jQuery.
+ // For environments that do not have a `window` with a `document`
+ // (such as Node.js), expose a factory as module.exports.
+ // This accentuates the need for the creation of a real `window`.
+ // e.g. var jQuery = require("jquery")(window);
+ // See ticket #14549 for more info.
+ module.exports = global.document ?
+ factory( global, true ) :
+ function( w ) {
+ if ( !w.document ) {
+ throw new Error( "jQuery requires a window with a document" );
+ }
+ return factory( w );
+ };
+ } else {
+ factory( global );
+ }
+
+// Pass this if window is not defined yet
+} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
+// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
+// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
+// enough that all such attempts are guarded in a try block.
+"use strict";
+
+var arr = [];
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var flat = arr.flat ? function( array ) {
+ return arr.flat.call( array );
+} : function( array ) {
+ return arr.concat.apply( [], array );
+};
+
+
+var push = arr.push;
+
+var indexOf = arr.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var fnToString = hasOwn.toString;
+
+var ObjectFunctionString = fnToString.call( Object );
+
+var support = {};
+
+var isFunction = function isFunction( obj ) {
+
+ // Support: Chrome <=57, Firefox <=52
+ // In some browsers, typeof returns "function" for HTML