diff --git a/CHANGELOG.md b/CHANGELOG.md index 96cbefb..23588ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.9.2](https://github.com/ooliver1/mafic/compare/v2.9.1...v2.9.2) (2023-06-04) + + +### Bug Fixes + +* **strategy:** properly match all regions to a node ([#93](https://github.com/ooliver1/mafic/issues/93)) ([f25b84f](https://github.com/ooliver1/mafic/commit/f25b84f6a2a68dc7297cac3cfec53d8b367bcd36)) + ## [2.9.1](https://github.com/ooliver1/mafic/compare/v2.9.0...v2.9.1) (2023-06-04) diff --git a/mafic/__init__.py b/mafic/__init__.py index c3d78d0..6a06465 100644 --- a/mafic/__init__.py +++ b/mafic/__init__.py @@ -27,7 +27,7 @@ __author__ = "ooliver1" __license__ = "MIT" __copyright__ = "Copyright 2022-present ooliver1" -__version__ = "2.9.1" +__version__ = "2.9.2" """The current version of mafic, using `PEP 440`_ format. .. _PEP 440: https://peps.python.org/pep-0440/ diff --git a/pyproject.toml b/pyproject.toml index 6f5e22d..3158df4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mafic" -version = "2.9.1" +version = "2.9.2" description = "A properly typehinted lavalink client for discord.py, nextcord, disnake and py-cord." authors = ["ooliver1 "] license = "MIT"