* Extend ``async_firebase.messages.AndroidNotification`` object with new attribute ``Visibility``. The attribute sets different visibility levels of a notification.
3.11.0
* [MINOR] Usage of `datetime.utcnow()` is deprecated in Python 3.12, so it was replaced with a recommended way, which is `datetime.now(timezone.utc)`
3.10.0
* `async_firebase` now works with python 3.13
3.9.0
* Add ability to say that HTTP/2 protocol should be used when making request. Please find an example below: python
client = AsyncFirebaseClient(use_http2=True)
3.8.0
* Endow ``async_firebase.messages.MulticastMessage`` with the ability to set FCM options.
3.7.0
* `async-firebase` has been allowed to perform basic topic management tasks from the server side. Given their registration token(s), you can now subscribe and unsubscribe client app instances in bulk using server logic. You can subscribe client app instances to any existing topic, or you can create a new topic.