diff --git a/CHANGELOG.md b/CHANGELOG.md index c7756aa..5d18426 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [2.8.0](https://github.com/ooliver1/mafic/compare/v2.7.0...v2.8.0) (2023-06-02) + + +### Features + +* allow for custom player cls when resuming ([ed36171](https://github.com/ooliver1/mafic/commit/ed36171bc4a76e724f8ab1fae367097f62d8a2f7)) + + +### Bug Fixes + +* **node:** add player to client state ([325750b](https://github.com/ooliver1/mafic/commit/325750b5f905f08c4430c7f5ad1da468dd4b814f)) +* **player:** cleanup if NoNodesAvailable ([12a8e03](https://github.com/ooliver1/mafic/commit/12a8e03754154764db9a97f4e7c1b3bfb8be0083)) +* **player:** resolve issue with resuming unknown players ([b450e08](https://github.com/ooliver1/mafic/commit/b450e08787951a976c766d35fa35ed7c3da016be)) +* **player:** set paused and volume anyway ([23c4d22](https://github.com/ooliver1/mafic/commit/23c4d221276aca7b31cb3073bf5bc80a4332ac24)) + ## [2.7.0](https://github.com/ooliver1/mafic/compare/v2.6.0...v2.7.0) (2023-06-02) diff --git a/mafic/__init__.py b/mafic/__init__.py index 5badf61..3194e3f 100644 --- a/mafic/__init__.py +++ b/mafic/__init__.py @@ -27,7 +27,7 @@ __author__ = "ooliver1" __license__ = "MIT" __copyright__ = "Copyright 2022-present ooliver1" -__version__ = "2.7.0" +__version__ = "2.8.0" """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 7661f50..4120ddb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mafic" -version = "2.7.0" +version = "2.8.0" description = "A properly typehinted lavalink client for discord.py, nextcord, disnake and py-cord." authors = ["ooliver1 "] license = "MIT"