bumped version && fixed migration guide

This commit is contained in:
grey-cat-1908 2023-07-04 13:05:28 +03:00
parent ff59029927
commit fdc6e6bace
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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 ---------------------------------------------------