diff --git a/MIGRATION.md b/MIGRATION.md index a920a16..7c1a676 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -61,7 +61,7 @@ async def get_stats(): ### Became: ```py async def get_stats(): - return {"guilds": len(bot.guilds), "shards": 0, "members": len(bot.users)} + return {"servers": len(bot.guilds), "shards": 0, "members": len(bot.users)} ``` ## Webhook or websocket... that is the question diff --git a/docs/source/conf.py b/docs/source/conf.py index 3fbfa95..bcf0853 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ copyright = "2021 - 2023, Viktor K (Marakarka)" author = "Viktor K (Marakarka)" # The full version, including alpha/beta/rc tags -release = "3.0.0" +release = "3.0.1" # -- General configuration ---------------------------------------------------