Not much changed, however it may be notable for some users:
* Anything that took a user ID, now takes a user object. (If you only have the ID, you can just wrap it in `discord.Object(id)`, it works the same)
* lower-level control of the ratelimiter has been removed. This means you cannot toggle the ratelimiter off, be it per-function or for the entire instance.
* The `toppy.errors.Ratelimited` error is now __always__ raised on ratelimit, and you cannot automatically wait it out instead (confusing behaviour)
* `Client.post_stats` no-longer allows an override
* *every request* now fires a new event: `on_toppy_request`, with key-word arguments `url:str` and `method:str`. This is meant to help people debug if they're firing lots of requests.